mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-11 17:03:59 +00:00
15 lines
220 B
C++
15 lines
220 B
C++
#ifndef _CCHARACTERSET
|
|
#define _CCHARACTERSET
|
|
|
|
#include "types.h"
|
|
class CInputStream;
|
|
class CCharacterSet {
|
|
public:
|
|
CCharacterSet(CInputStream& in);
|
|
|
|
private:
|
|
uint unk;
|
|
char data[0x10];
|
|
};
|
|
#endif // _CCHARACTERSET
|