mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-13 21:05:52 +00:00
13 lines
207 B
C++
13 lines
207 B
C++
#ifndef __CGENDESCRIPTION_HPP__
|
|
#define __CGENDESCRIPTION_HPP__
|
|
|
|
class CGenDescription {
|
|
public:
|
|
CGenDescription();
|
|
~CGenDescription();
|
|
private:
|
|
char data[0x12c];
|
|
};
|
|
|
|
#endif // __CGENDESCRIPTION_HPP__
|