aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent/animation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/teenagent/animation.cpp')
-rw-r--r--engines/teenagent/animation.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/teenagent/animation.cpp b/engines/teenagent/animation.cpp
index 97cf785506..8149632160 100644
--- a/engines/teenagent/animation.cpp
+++ b/engines/teenagent/animation.cpp
@@ -22,11 +22,10 @@
* $Id$
*/
-
-#include "animation.h"
+#include "teenagent/animation.h"
#include "common/endian.h"
-using namespace TeenAgent;
+namespace TeenAgent {
Animation::Animation() : id(0), x(0), y(0), loop(true), data(0), data_size(0), frames_count(0), frames(0), index(0) {
}
@@ -183,3 +182,5 @@ void Animation::load(Common::SeekableReadStream * s, Type type) {
Animation::~Animation() {
free();
}
+
+} // End of namespace TeenAgent