Add very basic Java MC server impl

This commit is contained in:
2024-04-09 01:47:28 -04:00
parent dd2ce094d2
commit e606a36145
9 changed files with 333 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package cc.fascinated.model.server;
/**
* @author Braydon
*/
public final class JavaMinecraftServer extends MinecraftServer {
public JavaMinecraftServer(String hostname, int port, String motd) {
super(hostname, port, motd);
}
}