mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-10 13:07:41 +00:00
21
include/Kyoto/Text/CStringTable.hpp
Normal file
21
include/Kyoto/Text/CStringTable.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef _CSTRINGTABLE_HPP
|
||||
#define _CSTRINGTABLE_HPP
|
||||
|
||||
#include "types.h"
|
||||
|
||||
#include "rstl/single_ptr.hpp"
|
||||
|
||||
#include "Kyoto/Streams/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
|
||||
Reference in New Issue
Block a user