15 lines
229 B
C++
15 lines
229 B
C++
#pragma once
|
|
|
|
class MinecraftCommands;
|
|
|
|
class Minecraft {
|
|
|
|
public:
|
|
|
|
static MinecraftCommands* (*Minecraft_getCommands)(Minecraft*);
|
|
|
|
MinecraftCommands* getCommands() {
|
|
return Minecraft_getCommands(this);
|
|
}
|
|
|
|
}; |