mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-01 17:03:29 +00:00
14 lines
187 B
C++
14 lines
187 B
C++
#ifndef _CGENDESCRIPTION
|
|
#define _CGENDESCRIPTION
|
|
|
|
class CGenDescription {
|
|
public:
|
|
CGenDescription();
|
|
~CGenDescription();
|
|
|
|
private:
|
|
char data[0x12c];
|
|
};
|
|
|
|
#endif // _CGENDESCRIPTION
|