prime/include/Kyoto_CWD/CStringTable.hpp
Luke Street ffd6ba5818 Implement TObj*/IObj; finish matching CStringTable
Former-commit-id: e98f62c3a608ed4a7ee93e1e3428dacb63329f25
2022-07-14 12:24:26 -04:00

22 lines
345 B
C++

#ifndef _CSTRINGTABLE_HPP
#define _CSTRINGTABLE_HPP
#include "types.h"
#include "rstl/single_ptr.hpp"
#include "CInputStream.hpp"
class CStringTable {
u32 x0_stringCount;
rstl::single_ptr< u8 > x4_data;
public:
CStringTable(CInputStream& in);
const wchar_t* GetString(int idx) const;
};
extern CStringTable* gpStringTable;
#endif