cleanup-work #22

Merged
lgc merged 12 commits from cleanup-work into main 2024-12-22 23:06:00 +00:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit 7ef04711c3 - Show all commits

View File

@ -212,4 +212,14 @@ public class GameBoard extends JPanel {
this.ownBoardPanel.refresh(); this.ownBoardPanel.refresh();
this.opponentBoardPanel.refresh(); this.opponentBoardPanel.refresh();
} }
/**
* Getter für Player1
* @return Player 1
* @author Peer Ole Wachtel
*/
public Player getP1() {
return p1;
}
} }