2026-03-01 12:16:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
#include "DLCFile.h"
|
|
|
|
|
|
|
|
|
|
class ColourTable;
|
|
|
|
|
|
|
|
|
|
class DLCColourTableFile : public DLCFile
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
ColourTable *m_colourTable;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DLCColourTableFile(const wstring &path);
|
2026-03-07 21:12:22 -06:00
|
|
|
~DLCColourTableFile();
|
2026-03-01 12:16:08 +08:00
|
|
|
|
2026-03-07 21:12:22 -06:00
|
|
|
virtual void addData(PBYTE pbData, DWORD dwBytes);
|
2026-03-01 12:16:08 +08:00
|
|
|
|
2026-03-07 21:12:22 -06:00
|
|
|
ColourTable *getColourTable() { return m_colourTable; }
|
2026-03-01 12:16:08 +08:00
|
|
|
};
|