server compilable

This commit is contained in:
Kolyah35
2026-03-26 03:48:08 +03:00
parent cbd81b47ce
commit a45c01d013
96 changed files with 3344 additions and 7975 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include <IPlatform.h>
class PlatformServer : public IPlatform {
public:
void runMainLoop(App& app) override;
std::string getDateString(int s) override;
int getScreenWidth() override { return 0; }
int getScreenHeight() override { return 0; }
float getPixelsPerMillimeter() override { return 0.f; }
bool supportsTouchscreen() override { return false; }
std::string getPlatformStringVar(int stringId) override { return "Minecraft PE 0.6.1 Standalone Server"; }
};