mirror of https://github.com/PrimeDecomp/prime.git
21 lines
324 B
C++
21 lines
324 B
C++
#ifndef _CGRAPHICSSYS
|
|
#define _CGRAPHICSSYS
|
|
|
|
#include "types.h"
|
|
|
|
class COsContext;
|
|
class CMemorySys;
|
|
|
|
class CGraphicsSys {
|
|
public:
|
|
CGraphicsSys(const COsContext& osContext, const CMemorySys& memorySys, uint, void*);
|
|
~CGraphicsSys();
|
|
|
|
private:
|
|
uint pad;
|
|
|
|
static bool mGraphicsInitialized;
|
|
};
|
|
|
|
#endif // _CGRAPHICSSYS
|