mirror of https://github.com/PrimeDecomp/prime.git
Fix missing forward declaration in IRenderer
This commit is contained in:
parent
f7715e98f6
commit
0510758333
|
@ -3,6 +3,13 @@
|
||||||
|
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
|
|
||||||
|
class CTransform4f;
|
||||||
|
class CParticleGen;
|
||||||
|
class IObjectStore;
|
||||||
|
class COsContext;
|
||||||
|
class CMemorySys;
|
||||||
|
class CResFactory;
|
||||||
|
|
||||||
class IRenderer {
|
class IRenderer {
|
||||||
public:
|
public:
|
||||||
enum EDrawableSorting {
|
enum EDrawableSorting {
|
||||||
|
@ -26,11 +33,6 @@ public:
|
||||||
virtual void AddParticleGen(const CParticleGen& gen);
|
virtual void AddParticleGen(const CParticleGen& gen);
|
||||||
};
|
};
|
||||||
|
|
||||||
class IObjectStore;
|
|
||||||
class COsContext;
|
|
||||||
class CMemorySys;
|
|
||||||
class CResFactory;
|
|
||||||
|
|
||||||
namespace Renderer {
|
namespace Renderer {
|
||||||
IRenderer* AllocateRenderer(IObjectStore&, COsContext&, CMemorySys&, CResFactory&);
|
IRenderer* AllocateRenderer(IObjectStore&, COsContext&, CMemorySys&, CResFactory&);
|
||||||
}; // namespace Renderer
|
}; // namespace Renderer
|
||||||
|
|
Loading…
Reference in New Issue