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