Files
GabsPuNs-MinecraftConsoles/Minecraft.World/LevelConflictException.h
GabsPuNs e90e585ef0 Fix Server Compilation
TODO: Add mimalloc static libs or add a way to copy the DLLs to the build folder
2026-04-13 05:13:37 -04:00

13 lines
231 B
C++

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