aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/GameRules/LevelRules.h
blob: a94a2123b8935c2d671276b94c186922791bf9a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);
};