mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 15:13:36 +00:00
19 lines
344 B
C++
19 lines
344 B
C++
#pragma once
|
|
#include "DLCFile.h"
|
|
|
|
class ColourTable;
|
|
|
|
class DLCColourTableFile : public DLCFile
|
|
{
|
|
private:
|
|
ColourTable *m_colourTable;
|
|
|
|
public:
|
|
DLCColourTableFile(const std::wstring &path);
|
|
~DLCColourTableFile();
|
|
|
|
virtual void addData(uint8_t *pbData, std::uint32_t dataBytes);
|
|
|
|
ColourTable *getColourTable() { return m_colourTable; }
|
|
};
|