2022-10-09 01:13:17 -04:00
|
|
|
#ifndef _CGRAPHICSSYS
|
|
|
|
|
#define _CGRAPHICSSYS
|
2022-04-09 20:17:06 -04:00
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
2022-11-29 20:56:37 -05:00
|
|
|
class COsContext;
|
|
|
|
|
class CMemorySys;
|
|
|
|
|
|
2022-04-09 20:17:06 -04:00
|
|
|
class CGraphicsSys {
|
|
|
|
|
public:
|
2022-09-13 00:26:54 -04:00
|
|
|
CGraphicsSys(const COsContext& osContext, const CMemorySys& memorySys, uint, void*);
|
2022-04-09 20:17:06 -04:00
|
|
|
~CGraphicsSys();
|
|
|
|
|
|
|
|
|
|
private:
|
2022-09-05 00:01:13 -04:00
|
|
|
uint pad;
|
2022-11-29 20:56:37 -05:00
|
|
|
|
|
|
|
|
static bool mGraphicsInitialized;
|
2022-04-09 20:17:06 -04:00
|
|
|
};
|
|
|
|
|
|
2022-10-09 01:13:17 -04:00
|
|
|
#endif // _CGRAPHICSSYS
|