aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/GameRules/LevelRules.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.Client/Common/GameRules/LevelRules.h')
-rw-r--r--Minecraft.Client/Common/GameRules/LevelRules.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Minecraft.Client/Common/GameRules/LevelRules.h b/Minecraft.Client/Common/GameRules/LevelRules.h
new file mode 100644
index 00000000..a94a2123
--- /dev/null
+++ b/Minecraft.Client/Common/GameRules/LevelRules.h
@@ -0,0 +1,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);
+}; \ No newline at end of file