mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 03:11:28 +00:00
22 lines
322 B
C++
22 lines
322 B
C++
#ifndef __RETRO_CBOORENDERER_HPP__
|
|
#define __RETRO_CBOORENDERER_HPP__
|
|
|
|
namespace Retro
|
|
{
|
|
class IObjectStore;
|
|
class COsContext;
|
|
class CMemorySys;
|
|
class CResFactory;
|
|
|
|
class CBooRenderer
|
|
{
|
|
public:
|
|
CBooRenderer(IObjectStore&, COsContext&, CMemorySys&, CResFactory&)
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __RETRO_CBOORENDERER_HPP__
|