init cmakelists

This commit is contained in:
murdle
2026-03-01 04:02:10 +02:00
parent 19250b9db4
commit f85920cf08
19111 changed files with 2795 additions and 2776 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#include "DLCFile.h"
class ColourTable;
class DLCColourTableFile : public DLCFile
{
private:
ColourTable *m_colourTable;
public:
DLCColourTableFile(const wstring &path);
~DLCColourTableFile();
virtual void addData(PBYTE pbData, DWORD dwBytes);
ColourTable *getColourTable() { return m_colourTable; }
};