prime/include/Kyoto_CWD/CStringTable.hpp

22 lines
345 B
C++
Raw Normal View History

#ifndef _CSTRINGTABLE_HPP
#define _CSTRINGTABLE_HPP
#include "types.h"
#include "rstl/single_ptr.hpp"
#include "CInputStream.hpp"
class CStringTable {
2022-07-18 13:51:34 +00:00
s32 x0_stringCount;
rstl::single_ptr< u8 > x4_data;
public:
CStringTable(CInputStream& in);
const wchar_t* GetString(int idx) const;
};
2022-04-11 22:42:08 +00:00
extern CStringTable* gpStringTable;
#endif