-converted remaining classes to GameObject
[supertux.git] / src / moving_object.cpp
1 #include "moving_object.h"
2
3 MovingObject::MovingObject()
4 {
5   base.x = base.y = base.width = base.height = 0;
6   old_base = base;
7 }
8
9 MovingObject::~MovingObject()
10 {
11 }
12