-
Notifications
You must be signed in to change notification settings - Fork 2
Text List
Pavle edited this page Mar 13, 2023
·
8 revisions
//m_nKey is key and m_aText is value of m_Map hash map in ZTextListData
struct STextListEntry
{
int m_nKey; //CRC32 hash of string reference.
int m_nLength;
ZString m_aText;
};
struct TextList
{
unsigned int entryCount;
std::vector<STextListEntry> entries;
};