aboutsummaryrefslogtreecommitdiff
path: root/queen/logic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'queen/logic.cpp')
-rw-r--r--queen/logic.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/queen/logic.cpp b/queen/logic.cpp
index 2bf1a6fb69..ff08881946 100644
--- a/queen/logic.cpp
+++ b/queen/logic.cpp
@@ -21,6 +21,8 @@
#include "queen/logic.h"
+namespace Queen {
+
QueenLogic::QueenLogic(QueenResource *resource)
: _maxAnimatedFrame(0), _maxStaticFrame(0), _resource(resource) {
_jas = _resource->loadFile("QUEEN.JAS", 20);
@@ -370,3 +372,5 @@ uint16 QueenLogic::findFrame(uint16 obj) {
}
return framenum;
}
+
+} // End of namespace Queen