mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-06 23:13:28 +00:00
16 lines
250 B
C++
16 lines
250 B
C++
#ifndef _CGRAPHICSSYS
|
|
#define _CGRAPHICSSYS
|
|
|
|
#include "types.h"
|
|
|
|
class CGraphicsSys {
|
|
public:
|
|
CGraphicsSys(const COsContext& osContext, const CMemorySys& memorySys, uint, void*);
|
|
~CGraphicsSys();
|
|
|
|
private:
|
|
uint pad;
|
|
};
|
|
|
|
#endif // _CGRAPHICSSYS
|