// Copyright (c) 2021 Dominic Masters
// 
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#pragma once
#include "../libs.h"
#include "../engine/engine.h"
#include "../poker/poker.h"

/** Name of the current game */
#define GAME_NAME "Dawn"


/** Describes the current game */
typedef struct {
  char *name;

  /** Engine for the game */
  engine_t engine;

  /** Poker Game State */
  poker_t poker;
} game_t;

/** The current running game state. */
extern game_t GAME_STATE;