Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
24 lines
556 B
C++
24 lines
556 B
C++
#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);
|
|
|
|
void addData(PBYTE pbData, DWORD dwBytes) override;
|
|
PBYTE getData(DWORD &dwBytes) override;
|
|
|
|
void addParameter(DLCManager::EDLCParameterType type, const wstring &value) override;
|
|
|
|
wstring getParameterAsString(DLCManager::EDLCParameterType type) override;
|
|
bool getParameterAsBool(DLCManager::EDLCParameterType type) override;
|
|
}; |