summaryrefslogtreecommitdiffstats
path: root/include/game.hpp
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2022-07-03 11:24:05 -0400
committerJon Santmyer <jon@jonsantmyer.com>2022-07-03 11:24:05 -0400
commit7d71827c25ff1ab47c03aaa26f63a9a754b3d549 (patch)
tree896eb9b61a3bc3be90d068b12ac38f07b99ffce5 /include/game.hpp
parent3d101c5638ef573993f387a2cecbb794e6e056e6 (diff)
downloadsystemviewer-7d71827c25ff1ab47c03aaa26f63a9a754b3d549.tar.gz
systemviewer-7d71827c25ff1ab47c03aaa26f63a9a754b3d549.tar.bz2
systemviewer-7d71827c25ff1ab47c03aaa26f63a9a754b3d549.zip
Condensed solar system csv files into one.
Add argument parser for help and different systems
Diffstat (limited to 'include/game.hpp')
-rw-r--r--include/game.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/game.hpp b/include/game.hpp
index 9454318..d20510b 100644
--- a/include/game.hpp
+++ b/include/game.hpp
@@ -11,6 +11,7 @@
#include <memory>
#define WINCTX_GAME "Game"
+#define WINCTX_TITLE "Title"
class Game
{
@@ -19,7 +20,7 @@ public:
STOPPED, RUNNING, RUNNING_INPUT, PAUSED, PAUSED_INPUT
};
- static void setup(unsigned w, unsigned h);
+ static void setup(unsigned w, unsigned h, const std::string &sysname);
static void cleanup();
static void turn();