aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/DLC/DLCColourTableFile.h
blob: 8426973911f427b84119cfa0ac91a2a296fcde74 (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 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; }
};