4jcraft/Minecraft.Client/Build/Common/GameRules/LevelRules.h
2026-03-05 03:29:23 -05:00

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);
};