update 30.09

This commit is contained in:
Mykola Fesenko
2025-09-30 09:05:36 +02:00
parent f9d0212017
commit c94eb0f036
17 changed files with 419 additions and 5 deletions

26
Game.java Normal file
View File

@@ -0,0 +1,26 @@
import javafx.scene.shape.Shape;
/**
*
* Beschreibung
*
* @version 1.0 vom 30.09.2025
* @author
*/
public class Game {
public String currentTurnPlayer = "White";
public int white_chips = 7;
public int black_chips = 7;
public void addShape(Shape shape);
public void start() {
}
public void chip_button_clicked(MuehleButton button) {
System.out.println(button.absoluteX);
}
}