mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-22 02:35:26 +00:00
18 lines
344 B
C++
18 lines
344 B
C++
#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; }
|
|
}; |