25 lines
382 B
Plaintext
25 lines
382 B
Plaintext
/**
|
|
*
|
|
* 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;
|
|
|
|
public void start() {
|
|
|
|
}
|
|
|
|
public void chip_button_clicked(MuehleButton button) {
|
|
System.out.println(button.absoluteX);
|
|
}
|
|
|
|
} |