mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-22 22:05:09 +00:00
21 lines
386 B
C++
21 lines
386 B
C++
#include "../../Minecraft.World/Platform/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 ?
|
|
}
|