mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 10:13:36 +00:00
18 lines
376 B
C++
18 lines
376 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
class LevelRuleset;
|
|
|
|
class LevelRules {
|
|
public:
|
|
LevelRules();
|
|
|
|
void addLevelRule(const std::string& displayName, std::uint8_t* pbData,
|
|
unsigned int dataLength);
|
|
void addLevelRule(const std::string& displayName, LevelRuleset* rootRule);
|
|
|
|
void removeLevelRule(LevelRuleset* removing);
|
|
};
|