prime/include/Kyoto/Text/CStringTable.hpp
Luke Street 0f25a3c8d4 Migrate s32->int, u32->uint; fix dolphin/types.h
Former-commit-id: 7eb08b6ee832f11971da0cfdc53b5a55b74ac79d
2022-09-05 00:01:22 -04:00

22 lines
359 B
C++

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