mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 07:23:41 +00:00
21 lines
401 B
C++
21 lines
401 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
#include "DLCFile.h"
|
|
|
|
class ColourTable;
|
|
|
|
class DLCColourTableFile : public DLCFile {
|
|
private:
|
|
ColourTable* m_colourTable;
|
|
|
|
public:
|
|
DLCColourTableFile(const std::string& path);
|
|
~DLCColourTableFile();
|
|
|
|
virtual void addData(std::uint8_t* pbData, std::uint32_t dataBytes);
|
|
|
|
ColourTable* getColourTable() { return m_colourTable; }
|
|
};
|