aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/DLC/DLCTextureFile.h
blob: bc7916867fb7c17e6cbea770f6591ae3e5d67c5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once
#include "DLCFile.h"

class DLCTextureFile : public DLCFile
{

private:
	bool m_bIsAnim;
	wstring m_animString;

	PBYTE m_pbData;
	DWORD m_dwBytes;

public:
	DLCTextureFile(const wstring &path);

	virtual void addData(PBYTE pbData, DWORD dwBytes);
	virtual PBYTE getData(DWORD &dwBytes);

	virtual void addParameter(DLCManager::EDLCParameterType type, const wstring &value);

	virtual wstring getParameterAsString(DLCManager::EDLCParameterType type);
	virtual bool getParameterAsBool(DLCManager::EDLCParameterType type);
};