4jcraft/Minecraft.World/Level/LevelConflictException.h
2026-03-08 22:43:44 +01: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);
};