hanafuda/game.h

27 lines
416 B
C
Raw Normal View History

2025-02-02 18:13:19 -05:00
#ifndef _HF_GAME_
#define _HF_GAME_
#include <stdbool.h>
typedef struct Game Game;
#include "card.h"
2025-02-03 20:07:22 -05:00
typedef enum GameState {
GAME_STATE_INITIALIZING,
GAME_STATE_DEALING
} GameState;
2025-02-02 18:13:19 -05:00
struct Game {
2025-02-03 20:07:22 -05:00
GameState state;
2025-02-02 18:13:19 -05:00
bool should_close;
Card cards[48];
Texture2D cards_texture;
2025-02-02 18:30:45 -05:00
Hand player_hand, left_hand, right_hand, deck;
2025-02-02 18:13:19 -05:00
};
void initialize_game(Game *g);
void run_until_closing(Game *g);
#endif