Add: PlayerState class

Refs #52
This commit is contained in:
Julian Kropff
2026-04-10 20:18:20 +02:00
parent ce583062ba
commit ea41a3c75a
@@ -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
}