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