X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=lib%2Fspecial%2Fgame_object.cpp;h=c3fd98dcd1eb5e4ace9d673a85bc0b80752a2624;hb=133d94d5b145f325c38c8c15c9ea561bfffb092d;hp=e1bf9b985486b4ce3c4a5e19fcdabb8b2ce3702f;hpb=9c511ea692d3a2339597211f08f18ea74fad35ec;p=supertux.git diff --git a/lib/special/game_object.cpp b/lib/special/game_object.cpp index e1bf9b985..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,10 +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 + #include "special/game_object.h" +namespace SuperTux +{ + GameObject::GameObject() - : wants_to_die(false) + : wants_to_die(false), flags(0) { } @@ -28,3 +33,4 @@ GameObject::~GameObject() { } +}