2026-03-01 12:16:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
#include "DLCFile.h"
|
|
|
|
|
|
|
|
|
|
class StringTable;
|
|
|
|
|
|
|
|
|
|
class DLCLocalisationFile : public DLCFile
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
StringTable *m_strings;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DLCLocalisationFile(const wstring &path);
|
|
|
|
|
DLCLocalisationFile(PBYTE pbData, DWORD dwBytes); // when we load in a texture pack details file from TMS++
|
|
|
|
|
|
2026-03-08 19:08:36 -04:00
|
|
|
void addData(PBYTE pbData, DWORD dwBytes) override;
|
2026-03-01 12:16:08 +08:00
|
|
|
|
|
|
|
|
StringTable *getStringTable() { return m_strings; }
|
|
|
|
|
};
|