mcpelauncher-1.1/mcpe/Minecraft.h
2026-01-20 19:17:58 +02:00

15 lines
229 B
C++

#pragma once
class MinecraftCommands;
class Minecraft {
public:
static MinecraftCommands* (*Minecraft_getCommands)(Minecraft*);
MinecraftCommands* getCommands() {
return Minecraft_getCommands(this);
}
};