mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-30 09:35:35 +00:00
15 lines
154 B
C++
15 lines
154 B
C++
#ifndef _CGRAPHICSSYS_HPP
|
|
#define _CGRAPHICSSYS_HPP
|
|
|
|
#include "types.h"
|
|
|
|
class CGraphicsSys {
|
|
public:
|
|
~CGraphicsSys();
|
|
|
|
private:
|
|
uint pad;
|
|
};
|
|
|
|
#endif
|