diff options
Diffstat (limited to 'Minecraft.Client/Common/DLC/DLCColourTableFile.h')
| -rw-r--r-- | Minecraft.Client/Common/DLC/DLCColourTableFile.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Minecraft.Client/Common/DLC/DLCColourTableFile.h b/Minecraft.Client/Common/DLC/DLCColourTableFile.h new file mode 100644 index 00000000..84269739 --- /dev/null +++ b/Minecraft.Client/Common/DLC/DLCColourTableFile.h @@ -0,0 +1,18 @@ +#pragma once +#include "DLCFile.h" + +class ColourTable; + +class DLCColourTableFile : public DLCFile +{ +private: + ColourTable *m_colourTable; + +public: + DLCColourTableFile(const wstring &path); + ~DLCColourTableFile(); + + virtual void addData(PBYTE pbData, DWORD dwBytes); + + ColourTable *getColourTable() { return m_colourTable; } +};
\ No newline at end of file |
