mirror of https://github.com/AxioDL/metaforce.git
23 lines
365 B
C++
23 lines
365 B
C++
|
#ifndef __RETRO_CBOORENDERER_HPP__
|
||
|
#define __RETRO_CBOORENDERER_HPP__
|
||
|
|
||
|
#include "../CFactoryStore.hpp"
|
||
|
#include "../COsContext.hpp"
|
||
|
#include "../CMemory.hpp"
|
||
|
#include "../CResFactory.hpp"
|
||
|
|
||
|
namespace Retro
|
||
|
{
|
||
|
|
||
|
class CBooRenderer
|
||
|
{
|
||
|
public:
|
||
|
CBooRenderer(IObjectStore&, COsContext&, CMemorySys&, CResFactory&)
|
||
|
{
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __RETRO_CBOORENDERER_HPP__
|