mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 11:29:01 +02:00
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);
|
|
}; |