Joining the two logics together slowly.

This commit is contained in:
2021-07-28 09:22:58 -07:00
parent cf4d4cd710
commit c3b0ad7950
35 changed files with 405 additions and 51 deletions

View File

@ -7,7 +7,10 @@
#pragma once
#include "../../libs.h"
#include "pokergameassets.h"
#include "../../poker/poker.h"
#include "../../vn/vnconversation.h"
#include "../../vn/vnscene.h"
/** Name of the Poker Game */
#define POKER_GAME_NAME "Dawn Poker Game"
@ -15,4 +18,10 @@
typedef struct {
/** Poker Game State */
poker_t poker;
/** Visual Novel Engine */
vnscene_t scene;
/** Assets for the game. */
pokergameassets_t assets;
} pokergame_t;

View File

@ -0,0 +1,15 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "../../display/gui/font.h"
#include "../../display/shader.h"
typedef struct {
font_t font;
shader_t shader;
} pokergameassets_t;