mirror of https://github.com/PrimeDecomp/prime.git
23 lines
273 B
C++
23 lines
273 B
C++
|
#ifndef _CGUISYS_HPP
|
||
|
#define _CGUISYS_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
class IFactory;
|
||
|
class CSimplePool;
|
||
|
|
||
|
class CGuiSys {
|
||
|
public:
|
||
|
enum EUsageMode {
|
||
|
kUM_Zero,
|
||
|
kUM_One,
|
||
|
kUM_Two,
|
||
|
};
|
||
|
|
||
|
CGuiSys(IFactory*, CSimplePool*, EUsageMode);
|
||
|
|
||
|
private:
|
||
|
u8 pad[0x14];
|
||
|
};
|
||
|
|
||
|
#endif
|