blob: ded6f515e7eff2405059f1a85d87178563ee969e (
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() override;
void addData(PBYTE pbData, DWORD dwBytes) override;
ColourTable *getColourTable() const { return m_colourTable; }
};
|