Files
DrPerkyLegit 96ac80730a lots of changes
removed stdafx from server namespace
logger is now header only
added class stubs
added accessor classes and minor code in them
added nlohmann_json to includes
protocol switch back to 560 while we wait for next neolegacy release
2026-05-17 17:28:22 -04:00

10 lines
199 B
C++

#pragma once
#include <string>
#include <functional>
typedef unsigned long long PlayerUID;
class Windows64Minecraft {
public:
static void StartDedicatedServer(std::function<void()> pluginload);
};