the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "DLCFile.h"
3
4class DLCTextureFile : public DLCFile
5{
6
7private:
8 bool m_bIsAnim;
9 wstring m_animString;
10
11 PBYTE m_pbData;
12 DWORD m_dwBytes;
13
14public:
15 DLCTextureFile(const wstring &path);
16
17 virtual void addData(PBYTE pbData, DWORD dwBytes);
18 virtual PBYTE getData(DWORD &dwBytes);
19
20 virtual void addParameter(DLCManager::EDLCParameterType type, const wstring &value);
21
22 virtual wstring getParameterAsString(DLCManager::EDLCParameterType type);
23 virtual bool getParameterAsBool(DLCManager::EDLCParameterType type);
24};