Use package com.velocitypowered.proxy
This commit is contained in:
15
src/main/java/com/velocitypowered/proxy/Velocity.java
Normal file
15
src/main/java/com/velocitypowered/proxy/Velocity.java
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user