diff --git a/include/dawn/game/game.h b/include/dawn/game/game.h index 529befa4..a9a1c53a 100644 --- a/include/dawn/game/game.h +++ b/include/dawn/game/game.h @@ -19,14 +19,6 @@ typedef struct { /** Engine for the game */ engine_t engine; - texture_t texture; - shader_t shader; - primitive_t primitive; - camera_t camera; - /** Poker Game State */ poker_t poker; -} game_t; - -/** The current running game state. */ -extern game_t GAME_STATE; \ No newline at end of file +} game_t; \ No newline at end of file diff --git a/src/game/game.c b/src/game/game.c index a5d5e85e..7d674775 100644 --- a/src/game/game.c +++ b/src/game/game.c @@ -7,22 +7,15 @@ #include "game.h" -game_t GAME_STATE; - bool gameInit(game_t *game) { // Init the game game->name = GAME_NAME; engineInit(&game->engine, game); - assetShaderLoad(&game->shader,"shaders/textured.vert","shaders/textured.frag"); - assetTextureLoad(&game->texture, "cards_normal.png"); - cubeInit(&game->primitive, 1, 1, 1); - - // Init - // gameTimeInit(); - // renderInit(); - // inputInit(); + // assetShaderLoad(&game->shader,"shaders/textured.vert","shaders/textured.frag"); + // assetTextureLoad(&game->texture, "cards_normal.png"); + // cubeInit(&game->primitive, 1, 1, 1); // // Load the world shader. // GAME_STATE.shaderWorld = assetShaderLoad( diff --git a/src/platform/glfw/glwfwplatform.c b/src/platform/glfw/glwfwplatform.c index 5b42fb2a..71dea735 100644 --- a/src/platform/glfw/glwfwplatform.c +++ b/src/platform/glfw/glwfwplatform.c @@ -5,6 +5,8 @@ #include "glwfwplatform.h" +game_t GAME_STATE; + GLFWwindow *window = NULL; int32_t main() { diff --git a/src/platform/glfw/glwfwplatform.h b/src/platform/glfw/glwfwplatform.h index 66e5ffc5..2ebf7a12 100644 --- a/src/platform/glfw/glwfwplatform.h +++ b/src/platform/glfw/glwfwplatform.h @@ -16,6 +16,9 @@ #define WINDOW_WIDTH_DEFAULT 480 #define WINDOW_HEIGHT_DEFAULT 270 +/** The current running game state. */ +extern game_t GAME_STATE; + /** The GLFW Window Context Pointer */ extern GLFWwindow *window;