]> git.localhorst.tv Git - blank.git/blobdiff - src/app/Runtime.hpp
split input handling
[blank.git] / src / app / Runtime.hpp
index 10a0e55cb559365366c29c090c2dc29bfb67778f..2d169d0149abbcddf69ee8321f121484f783b7f5 100644 (file)
@@ -2,9 +2,10 @@
 #define BLANK_RUNTIME_HPP_
 
 #include "Environment.hpp"
-#include "../net/Client.hpp"
-#include "../net/Server.hpp"
+#include "../client/Client.hpp"
+#include "../server/Server.hpp"
 #include "../ui/Interface.hpp"
+#include "../world/Generator.hpp"
 #include "../world/World.hpp"
 
 #include <cstddef>
@@ -39,14 +40,9 @@ public:
        };
 
        struct Config {
-               bool vsync = true;
-               bool doublebuf = true;
-               int multisampling = 1;
-
-               Client::Config client = Client::Config();
+               blank::Config game = blank::Config();
                HeadlessEnvironment::Config env = HeadlessEnvironment::Config();
-               Interface::Config interface = Interface::Config();
-               Server::Config server = Server::Config();
+               Generator::Config gen = Generator::Config();
                World::Config world = World::Config();
        };