the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "DLCFile.h"
3
4class StringTable;
5
6class DLCLocalisationFile : public DLCFile
7{
8private:
9 StringTable *m_strings;
10
11public:
12 DLCLocalisationFile(const wstring &path);
13 DLCLocalisationFile(PBYTE pbData, DWORD dwBytes); // when we load in a texture pack details file from TMS++
14
15 virtual void addData(PBYTE pbData, DWORD dwBytes);
16
17 StringTable *getStringTable() { return m_strings; }
18};