Fix missing forward declaration in IRenderer

This commit is contained in:
Henrique Gemignani Passos Lima 2022-10-17 18:54:45 +03:00
parent f7715e98f6
commit 0510758333
No known key found for this signature in database
GPG Key ID: E224F951761145F8
1 changed files with 7 additions and 5 deletions

View File

@ -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