the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 18 lines 325 B view raw
1#pragma once 2#include "DLCFile.h" 3 4class ColourTable; 5 6class DLCColourTableFile : public DLCFile 7{ 8private: 9 ColourTable *m_colourTable; 10 11public: 12 DLCColourTableFile(const wstring &path); 13 ~DLCColourTableFile(); 14 15 virtual void addData(PBYTE pbData, DWORD dwBytes); 16 17 ColourTable *getColourTable() { return m_colourTable; } 18};