2021-05-21 07:20:22 -07:00

24 lines
453 B
C

// 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;