diff --git a/Src/main.java b/Src/main.java new file mode 100644 index 0000000000000000000000000000000000000000..1eec34b56f6f8e2b56fe8380af6343c952064e5d --- /dev/null +++ b/Src/main.java @@ -0,0 +1,30 @@ +import javafx.application.Application; +import javafx.stage.Stage; +import javafx.scene.*; +import javafx.scene.layout.StackPane; +import javafx.fxml.FXMLLoader; + + +public class main extends Application { + @Override + public void start(Stage stage) throws Exception { + + Scene scene = new Scene(new StackPane()); + + FXMLLoader loader = new FXMLLoader(getClass().getResource("/tamil.fxml")); + scene.setRoot(loader.load()); + tamilController controller = loader.getController(); + controller.init(); + + stage.setScene(scene); + stage.setTitle("Tamil Transcription"); + stage.show(); + } + +/** +* @param args the command line arguments +*/ + public static void main(String[] args) { + launch(args); + } +} \ No newline at end of file