Skip to content

Commit

Permalink
Rename environment to legacy environment
Browse files Browse the repository at this point in the history
  • Loading branch information
hhirsch committed Oct 25, 2018
1 parent cbc571b commit dd44c68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion external/RadixEngine
1 change: 0 additions & 1 deletion source/GameController.cpp
Expand Up @@ -6,7 +6,6 @@
#include <radix/core/event/EventDispatcher.hpp>
#include <radix/core/state/GameStateManager.hpp>
#include <radix/entities/Player.hpp>
#include <radix/env/Environment.hpp>
#include <radix/input/InputManager.hpp>

namespace glPortal {
Expand Down
4 changes: 2 additions & 2 deletions source/Main.cpp
@@ -1,6 +1,6 @@
#include <glPortal/Game.hpp>

#include <radix/env/Environment.hpp>
#include <radix/env/LegacyEnvironment.hpp>
#include <radix/env/ArgumentsParser.hpp>
#include <radix/core/diag/Throwables.hpp>
#include <iostream>
Expand All @@ -11,7 +11,7 @@ using namespace glPortal;

int main(const int argc, char *argv[]) {
radix::Util::Init();
radix::Environment::init();
radix::LegacyEnvironment::init();
radix::ArgumentsParser::setEnvironmentFromArgs(argc, argv);
try {
Game game;
Expand Down

0 comments on commit dd44c68

Please sign in to comment.