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
14 lines
275 B
C++
14 lines
275 B
C++
#pragma once
|
|
|
|
class LevelRuleset;
|
|
|
|
class LevelRules
|
|
{
|
|
public:
|
|
LevelRules();
|
|
|
|
void addLevelRule(const wstring &displayName, PBYTE pbData, DWORD dwLen);
|
|
void addLevelRule(const wstring &displayName, LevelRuleset *rootRule);
|
|
|
|
void removeLevelRule(LevelRuleset *removing);
|
|
}; |