/
mmarakayeva
/
lab2
Обзор
Документация
Войти
/
mmarakayeva
/
lab2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/main/java/com/example/catchtheballgame/CatchTheBallApplication.java
29 строк
821 B
Миленикс
first_commit
14 июн 2026, 22:25
14 июн 2026, 22:25
43f8825
Код
Авторство
О чём код?
package com.example.catchtheballgame; import com.example.catchtheballgame.controller.GameController; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.layout.VBox; import javafx.stage.Stage; public class CatchTheBallApplication extends Application { @Override public void start(Stage primaryStage) { GameController controller = new GameController(); VBox root = controller.getView(); Scene scene = new Scene(root, 850, 660); primaryStage.setTitle("Лови шарик!"); primaryStage.setScene(scene); primaryStage.setResizable(true); primaryStage.setMinWidth(600); primaryStage.setMinHeight(500); primaryStage.show(); } public static void main(String[] args) { launch(args); } }