-Added new object system and converted some GameObjects to it.
[supertux.git] / src / game_object.cpp
1 #include "game_object.h"
2
3 _GameObject::_GameObject()
4   : wants_to_die(false)
5 {
6 }
7
8 _GameObject::~_GameObject()
9 {
10 }
11