Dawn/include/dawn/game/poker/pokergame.h
2021-08-19 23:07:20 -07:00

32 lines
650 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 "pokergameassets.h"
#include "pokerrender.h"
#include "pokerui.h"
#include "../../poker/poker.h"
#include "../../vn/vnconversation.h"
#include "../../vn/vnscene.h"
typedef struct {
/** Poker Game State */
poker_t poker;
/** Visual Novel Engine */
vnscene_t scene;
/** Assets (Files) for the game. */
pokergameassets_t assets;
/** Rendering Engine for the game. */
pokerrender_t render;
/** UI For the Game */
pokerui_t ui;
} pokergame_t;