X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2Fruntime.cpp;h=cc9d3bb189ca4b8f6a1032152c3d77008bf84e0c;hb=8ae45b6555d55f301f83daf8c1337d332d8305ab;hp=8ce7b5dd59562fa989487ae635cc266849939349;hpb=13e676a6e49128ebc6c63b8dd08bef51d360e8e9;p=blank.git diff --git a/src/app/runtime.cpp b/src/app/runtime.cpp index 8ce7b5d..cc9d3bb 100644 --- a/src/app/runtime.cpp +++ b/src/app/runtime.cpp @@ -1,13 +1,13 @@ #include "Application.hpp" #include "Environment.hpp" #include "Runtime.hpp" -#include "ServerState.hpp" #include "WorldState.hpp" #include "init.hpp" #include "../client/MasterState.hpp" #include "../io/filesystem.hpp" #include "../io/WorldSave.hpp" +#include "../server/ServerState.hpp" #include #include @@ -342,7 +342,7 @@ void Runtime::RunServer() { } HeadlessApplication app(env); - ServerState server_state(env, config.gen, config.world, save, config.server); + server::ServerState server_state(env, config.gen, config.world, save, config.server); app.PushState(&server_state); Run(app); }