first commit
This commit is contained in:
18
Minecraft.Client/Common/DLC/DLCColourTableFile.h
Normal file
18
Minecraft.Client/Common/DLC/DLCColourTableFile.h
Normal file
@@ -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; }
|
||||
};
|
||||
Reference in New Issue
Block a user