Mostly got boats going to marks on the canvas (code currently broken) #story[377] #pair[zyt10, ptg19]

This commit is contained in:
zyt10
2017-03-17 16:18:01 +13:00
parent 6383b9a6f8
commit 683f4ba94e
5 changed files with 267 additions and 74 deletions
+2 -3
View File
@@ -10,13 +10,12 @@ public class App extends Application
{
@Override
public void start(Stage primaryStage) throws Exception {
System.out.println(getClass().getResource("/RaceView.fxml"));
Parent root = FXMLLoader.load(getClass().getResource("/RaceView.fxml"));
primaryStage.setTitle("RaceVision");
primaryStage.setScene(new Scene(root));
seng302.models.OldApp.main(); // Run this to show how positions are updated
// seng302.models.OldApp.main(); // Run this to show how positions are updated
// seng302.controllers.RaceController.initializeRace();
primaryStage.show();
}