mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 12:43:37 +00:00
15 lines
306 B
C++
15 lines
306 B
C++
#pragma once
|
|
|
|
class LevelRuleset;
|
|
|
|
class LevelRules
|
|
{
|
|
public:
|
|
LevelRules();
|
|
|
|
void addLevelRule(const std::wstring &displayName, std::uint8_t *pbData, unsigned int dataLength);
|
|
void addLevelRule(const std::wstring &displayName, LevelRuleset *rootRule);
|
|
|
|
void removeLevelRule(LevelRuleset *removing);
|
|
};
|