mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 15:13:36 +00:00
15 lines
443 B
C++
15 lines
443 B
C++
#include "Minecraft.World/Header Files/stdafx.h"
|
|
#include "LevelRules.h"
|
|
|
|
LevelRules::LevelRules() {}
|
|
|
|
void LevelRules::addLevelRule(const std::wstring& displayName,
|
|
std::uint8_t* pbData, unsigned int dataLength) {}
|
|
|
|
void LevelRules::addLevelRule(const std::wstring& displayName,
|
|
LevelRuleset* rootRule) {}
|
|
|
|
void LevelRules::removeLevelRule(LevelRuleset* removing) {
|
|
// TODO ?
|
|
}
|