Files
muehle/Game.java
Mykola Fesenko c94eb0f036 update 30.09
2025-09-30 09:05:36 +02:00

26 lines
428 B
Java

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);
}
}