New Norwegian Translation
[supertux.git] / lib / special / game_object.cpp
index 5b27dab..c3fd98d 100644 (file)
@@ -1,7 +1,7 @@
 //  $Id$
 //
 //  SuperTux -  A Jump'n Run
-//  Copyright (C) 2004 Matthias Braun <matze@braunis.de
+//  Copyright (C) 2004 Matthias Braun <matze@braunis.de>
 //
 //  This program is free software; you can redistribute it and/or
 //  modify it under the terms of the GNU General Public License
 //  along with this program; if not, write to the Free Software
 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-#include "../special/game_object.h"
+#include <config.h>
 
-using namespace SuperTux;
+#include "special/game_object.h"
+
+namespace SuperTux
+{
 
 GameObject::GameObject()
-  : wants_to_die(false)
+  : wants_to_die(false), flags(0)
 {
 }
 
@@ -30,3 +33,4 @@ GameObject::~GameObject()
 {
 }
 
+}