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
18 lines
344 B
C++
18 lines
344 B
C++
#pragma once
|
|
#include "DLCFile.h"
|
|
|
|
class ColourTable;
|
|
|
|
class DLCColourTableFile : public DLCFile
|
|
{
|
|
private:
|
|
ColourTable *m_colourTable;
|
|
|
|
public:
|
|
DLCColourTableFile(const wstring &path);
|
|
~DLCColourTableFile() override;
|
|
|
|
void addData(PBYTE pbData, DWORD dwBytes) override;
|
|
|
|
ColourTable *getColourTable() const { return m_colourTable; }
|
|
}; |