Seat inintialization

This commit is contained in:
Bill Rossi 2025-02-22 07:51:32 -05:00
parent 21adb38b00
commit 881e3928f9

4
game.c
View File

@ -83,6 +83,10 @@ void initialize_game(Game *g) {
g->right.teyaku.calculated = false;
g->left.teyaku.calculated = false;
g->player.seat = PLAYER;
g->right.seat = RIGHT;
g->left.seat = LEFT;
g->player.hand.position = (Vector2) { 300, 600 };
g->player.hand.display_type = HAND_DISPLAY_ROW;
g->right.hand.position = (Vector2) { 750, 125 };