mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 12:23:37 +00:00
27 lines
848 B
C++
27 lines
848 B
C++
#pragma once
|
|
#include <cstdint>
|
|
#include "DLCManager.h"
|
|
|
|
class DLCFile
|
|
{
|
|
protected:
|
|
DLCManager::EDLCType m_type;
|
|
std::wstring m_path;
|
|
std::uint32_t m_dwSkinId;
|
|
|
|
public:
|
|
DLCFile(DLCManager::EDLCType type, const std::wstring &path);
|
|
virtual ~DLCFile() {}
|
|
|
|
DLCManager::EDLCType getType() { return m_type; }
|
|
std::wstring getPath() { return m_path; }
|
|
std::uint32_t getSkinID() { return m_dwSkinId; }
|
|
|
|
virtual void addData(std::uint8_t *pbData, std::uint32_t dataBytes) {}
|
|
virtual std::uint8_t *getData(std::uint32_t &dataBytes) { dataBytes = 0; return NULL; }
|
|
virtual void addParameter(DLCManager::EDLCParameterType type, const std::wstring &value) {}
|
|
|
|
virtual std::wstring getParameterAsString(DLCManager::EDLCParameterType type) { return L""; }
|
|
virtual bool getParameterAsBool(DLCManager::EDLCParameterType type) { return false;}
|
|
};
|