4jcraft/Minecraft.World/Level/LevelConflictException.h
2026-03-06 12:16:41 -06:00

13 lines
224 B
C++

#pragma once
#include "../Util/Exceptions.h"
class LevelConflictException : public RuntimeException
{
private:
static const __int32 serialVersionUID = 1L;
public:
LevelConflictException(const std::wstring& msg);
};