mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-23 12:35:10 +00:00
15 lines
340 B
C++
15 lines
340 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);
|
|
};
|