first commit
This commit is contained in:
18
Minecraft.Client/Common/DLC/DLCLocalisationFile.h
Normal file
18
Minecraft.Client/Common/DLC/DLCLocalisationFile.h
Normal file
@@ -0,0 +1,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++
|
||||
|
||||
virtual void addData(PBYTE pbData, DWORD dwBytes);
|
||||
|
||||
StringTable *getStringTable() { return m_strings; }
|
||||
};
|
||||
Reference in New Issue
Block a user