Use package com.velocitypowered.proxy

This commit is contained in:
Andrew Steinborn
2018-07-25 19:47:59 -04:00
parent 4a2120f4d8
commit 034039a27d
45 changed files with 152 additions and 149 deletions

View File

@@ -0,0 +1,15 @@
package com.velocitypowered.proxy;
import com.velocitypowered.proxy.connection.VelocityServer;
public class Velocity {
public static void main(String... args) throws InterruptedException {
VelocityServer server = new VelocityServer();
server.initialize();
while (true) {
// temporary until jline is added.
Thread.sleep(999999);
}
}
}