X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FRuntime.hpp;h=36808a0e2a0e385cbcc9b2bd013e4310abdba1ef;hb=38a4cffc0b6aa58e49d24c06aad7bee14cb6515d;hp=10a0e55cb559365366c29c090c2dc29bfb67778f;hpb=1afc887a2040dfdedfa66913e94ff7a9634f648f;p=blank.git diff --git a/src/app/Runtime.hpp b/src/app/Runtime.hpp index 10a0e55..36808a0 100644 --- a/src/app/Runtime.hpp +++ b/src/app/Runtime.hpp @@ -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 @@ -43,10 +44,11 @@ public: bool doublebuf = true; int multisampling = 1; - Client::Config client = Client::Config(); + client::Client::Config client = client::Client::Config(); + Generator::Config gen = Generator::Config(); HeadlessEnvironment::Config env = HeadlessEnvironment::Config(); Interface::Config interface = Interface::Config(); - Server::Config server = Server::Config(); + server::Server::Config server = server::Server::Config(); World::Config world = World::Config(); };