mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-14 02:41:24 +01:00
17 lines
328 B
Java
17 lines
328 B
Java
|
|
||
|
package org.bukkit.craftbukkit;
|
||
|
|
||
|
import net.minecraft.server.MinecraftServer;
|
||
|
|
||
|
public class Main {
|
||
|
public static void main(String[] args) {
|
||
|
// Todo: Installation script
|
||
|
|
||
|
try {
|
||
|
MinecraftServer.main(args);
|
||
|
} catch (Throwable t) {
|
||
|
t.printStackTrace();
|
||
|
}
|
||
|
}
|
||
|
}
|