-converted remaining classes to GameObject
[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