2026-03-01 12:16:08 +08:00
|
|
|
#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);
|
|
|
|
|
|
2026-03-07 21:12:22 -06:00
|
|
|
virtual void addData(PBYTE pbData, DWORD dwBytes);
|
|
|
|
|
virtual PBYTE getData(DWORD &dwBytes);
|
2026-03-01 12:16:08 +08:00
|
|
|
|
2026-03-07 21:12:22 -06:00
|
|
|
virtual void addParameter(DLCManager::EDLCParameterType type, const wstring &value);
|
2026-03-01 12:16:08 +08:00
|
|
|
|
2026-03-07 21:12:22 -06:00
|
|
|
virtual wstring getParameterAsString(DLCManager::EDLCParameterType type);
|
|
|
|
|
virtual bool getParameterAsBool(DLCManager::EDLCParameterType type);
|
2026-03-01 12:16:08 +08:00
|
|
|
};
|