prime/include/Kyoto_CWD/CStringTable.hpp
Luke Street 9404d679f8 Link CStringTable.cpp
Former-commit-id: f511aba22850cf38b565ec44f5012b997f832808
2022-07-18 09:51:34 -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 {
s32 x0_stringCount;
rstl::single_ptr< u8 > x4_data;
public:
CStringTable(CInputStream& in);
const wchar_t* GetString(int idx) const;
};
extern CStringTable* gpStringTable;
#endif