From 3db23c32eda37951cdedb0df6bfa08a0bc3a22b7 Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Fri, 13 Oct 2023 19:23:01 +0200 Subject: [PATCH] =?UTF-8?q?-=20Apenes=20comen=C3=A7ant=20gamestate=5Fplay?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/gamestate_play.cpp | 11 +++++++++++ source/gamestates.h | 1 + 2 files changed, 12 insertions(+) create mode 100644 source/gamestate_play.cpp diff --git a/source/gamestate_play.cpp b/source/gamestate_play.cpp new file mode 100644 index 0000000..f7c96ee --- /dev/null +++ b/source/gamestate_play.cpp @@ -0,0 +1,11 @@ +#include "gamestates.h" +#include "jgame.h" +#include + +namespace gamestate +{ + namespace play + { + + } +} \ No newline at end of file diff --git a/source/gamestates.h b/source/gamestates.h index e54bd97..add1918 100644 --- a/source/gamestates.h +++ b/source/gamestates.h @@ -5,5 +5,6 @@ namespace gamestate namespace sequence { void init(); } namespace menu { void init(); } namespace prefase { void init(); } + namespace play { void init(); } namespace postfase { void init(); } }