]> git.localhorst.tv Git - blank.git/blobdiff - src/app/Environment.hpp
unified location handling
[blank.git] / src / app / Environment.hpp
index 97f4a7ec54434e839dfaba76c66095a80bb17cf7..7061000fa221ffe1f3da97ad7e42ff43d4a08fcf 100644 (file)
@@ -6,6 +6,8 @@
 #include "StateControl.hpp"
 #include "../audio/Audio.hpp"
 #include "../graphics/Viewport.hpp"
+#include "../rand/GaloisLFSR.hpp"
+#include "../shared/MessageState.hpp"
 #include "../ui/Keymap.hpp"
 
 #include <string>
@@ -36,6 +38,8 @@ struct HeadlessEnvironment {
 
        StateControl state;
 
+       GaloisLFSR rng;
+
 
        explicit HeadlessEnvironment(const Config &);
 
@@ -53,9 +57,13 @@ struct Environment
 
        Keymap keymap;
 
+       MessageState msg_state;
+
 
        Environment(Window &win, const Config &);
 
+       void ShowMessage(const char *);
+
 };
 
 }