mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-18 23:23:19 +01:00
16 lines
328 B
Java
16 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();
|
|
}
|
|
}
|
|
}
|