Files
LegacyMultiplayerProject/Minecraft.World/LevelConflictException.h
DrPerkyLegit 5b19646cc6 init
2026-06-23 01:27:12 -04:00

13 lines
231 B
C++

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