update 30.09
This commit is contained in:
26
Game.java
Normal file
26
Game.java
Normal 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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user