mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 02:31:21 +00:00
21 lines
291 B
C++
21 lines
291 B
C++
#ifndef __PSHAG_CBOORENDERER_HPP__
|
|
#define __PSHAG_CBOORENDERER_HPP__
|
|
|
|
namespace pshag
|
|
{
|
|
class IObjectStore;
|
|
class CMemorySys;
|
|
class CResFactory;
|
|
|
|
class CBooRenderer
|
|
{
|
|
public:
|
|
CBooRenderer(IObjectStore&, CMemorySys&, CResFactory&)
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __PSHAG_CBOORENDERER_HPP__
|