X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=lib%2Fspecial%2Fgame_object.cpp;h=c3fd98dcd1eb5e4ace9d673a85bc0b80752a2624;hb=133d94d5b145f325c38c8c15c9ea561bfffb092d;hp=5b27dab0bafabd636c669f7e12dc2f9fa29d52ae;hpb=4b476ec30e7dd62249328054402d6493c20a685d;p=supertux.git diff --git a/lib/special/game_object.cpp b/lib/special/game_object.cpp index 5b27dab0b..c3fd98dcd 100644 --- a/lib/special/game_object.cpp +++ b/lib/special/game_object.cpp @@ -1,7 +1,7 @@ // $Id$ // // SuperTux - A Jump'n Run -// Copyright (C) 2004 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -17,12 +17,15 @@ // 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 -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() { } +}