blob: 419d714d647b2f8de5613b97ffda6ed51e408918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#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++
void addData(PBYTE pbData, DWORD dwBytes) override;
StringTable *getStringTable() { return m_strings; }
};
|