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"
|
||||
|
||||
class CTransform4f;
|
||||
class CParticleGen;
|
||||
class IObjectStore;
|
||||
class COsContext;
|
||||
class CMemorySys;
|
||||
class CResFactory;
|
||||
|
||||
class IRenderer {
|
||||
public:
|
||||
enum EDrawableSorting {
|
||||
|
@ -26,11 +33,6 @@ public:
|
|||
virtual void AddParticleGen(const CParticleGen& gen);
|
||||
};
|
||||
|
||||
class IObjectStore;
|
||||
class COsContext;
|
||||
class CMemorySys;
|
||||
class CResFactory;
|
||||
|
||||
namespace Renderer {
|
||||
IRenderer* AllocateRenderer(IObjectStore&, COsContext&, CMemorySys&, CResFactory&);
|
||||
}; // namespace Renderer
|
||||
|
|
Loading…
Reference in New Issue