feat(game): add PlayerState and GameState

This commit is contained in:
Kieran Kihn
2025-11-16 20:22:19 +08:00
parent e2a27e4417
commit 8dbdbb395c
3 changed files with 339 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ add_executable(uno-game src/main.cpp
src/game/CardTile.cpp
src/game/Player.cpp
src/common/utils.cpp
src/game/GameState.cpp
src/game/GameState.h
)
target_link_libraries(uno-game
PRIVATE ftxui::screen
@@ -21,6 +23,8 @@ add_library(uno-game-lib src/game/Card.cpp
src/game/CardTile.cpp
src/game/Player.cpp
src/common/utils.cpp
src/game/GameState.cpp
src/game/GameState.h
)
add_subdirectory(test)