Static API is a poor solution if someone wants to run two server instances. I want to be able to get an object of a started process with all services. for example: ```java MinecraftServer minecraftServer = MinecraftServer.init(); InstanceManager instanceManager = minecraftServer.getInstanceManager(); Server server = minecraftServer.getServer(); CommandManager commandManager = minecraftServer.getCommandManager(); GlobalEventHandler eventHandler = minecraftServer.getGlobalEventHandler(); ```
Static API is a poor solution if someone wants to run two server instances.
I want to be able to get an object of a started process with all services.
for example: