mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-05-22 03:25:30 +00:00
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
10 lines
199 B
C++
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);
|
|
}; |