1#pragma once
2
3class LevelRuleset;
4
5class LevelRules
6{
7public:
8 LevelRules();
9
10 void addLevelRule(const wstring &displayName, PBYTE pbData, DWORD dwLen);
11 void addLevelRule(const wstring &displayName, LevelRuleset *rootRule);
12
13 void removeLevelRule(LevelRuleset *removing);
14};