1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-03 22:01:22 +00:00

namespaces conform to an older standard

This commit is contained in:
Zeno Rogue
2018-06-11 18:00:40 +02:00
parent 7d04f92b55
commit a40d64a8f6
11 changed files with 21 additions and 23 deletions

View File

@@ -1,7 +1,7 @@
// Hyperbolic Rogue -- the Tutorial/presentation
// Copyright (C) 2011-2018 Zeno Rogue, see 'hyper.cpp' for details
namespace hr::tour {
namespace hr { namespace tour {
bool on;
@@ -803,4 +803,4 @@ auto a1 = addHook(hooks_frame, 100, [] () { if(tour::on) tour::presentation(tour
auto a2 = addHook(hooks_handleKey, 100, handleKeyTour);
auto a3 = addHook(hooks_nextland, 100, [] (eLand l) { return tour::on ? getNext(l) : laNone; });
}
}}