Add Game UI logic #255

Merged
j.kropff merged 28 commits from feat/game-ui into main 2026-04-11 16:59:57 +02:00
Showing only changes of commit ea41a3c75a - Show all commits
@@ -0,0 +1,10 @@
package ch.unibas.dmi.dbis.cs108.casono.client.game;
/**
* Enumeration representing the possible states of a player in the poker game.
*/
public enum PlayerState {
ACTIVE,
FOLDED,
DEALER
}