Error: Main method not found in class net.minecraft.client.Minecraft, please define the main method as:
public static void main(String[] args)
or a JavaFX application class must extend javafx.application.Application
package net.minecraft.client;
public class Minecraft {
public static void main(String[] args) {
}
}
package net.minecraft.client;
import javafx.application.Application;
public class Minecraft extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
}
}