20 lines
324 B
C++
20 lines
324 B
C++
#include "stdafx.h"
|
|
#include "LevelRules.h"
|
|
|
|
|
|
LevelRules::LevelRules()
|
|
{
|
|
}
|
|
|
|
void LevelRules::addLevelRule(const wstring &displayName, PBYTE pbData, DWORD dwLen)
|
|
{
|
|
}
|
|
|
|
void LevelRules::addLevelRule(const wstring &displayName, LevelRuleset *rootRule)
|
|
{
|
|
}
|
|
|
|
void LevelRules::removeLevelRule(LevelRuleset *removing)
|
|
{
|
|
// TODO ?
|
|
} |