mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-01 09:21:20 +00:00
15 lines
153 B
C++
15 lines
153 B
C++
#ifndef _CGRAPHICSSYS_HPP
|
|
#define _CGRAPHICSSYS_HPP
|
|
|
|
#include "types.h"
|
|
|
|
class CGraphicsSys {
|
|
public:
|
|
~CGraphicsSys();
|
|
|
|
private:
|
|
u32 pad;
|
|
};
|
|
|
|
#endif
|