This commit is contained in:
2021-11-17 09:04:45 +01:00
parent 74d6b58f94
commit 4e7b664325
16 changed files with 6 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ public class HappyBirdMain extends Application {
@Override
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("happyBird.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 578, 700);
Scene scene = new Scene(fxmlLoader.load(), 800, 700);
stage.setTitle("HappyBird");
stage.setScene(scene);
stage.show();