X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fobject%2Ffalling_coin.hpp;h=8eeabb39590fc2db46693bedabe296de59ff61f2;hb=4587bd9c8fc5cbb20f1e442de76bc06571ab56ba;hp=c80190246fe7b44ddd2203cd5725d94852cf7f18;hpb=ff3f2e3e93b2af69c0f686f8f636ba0d66c67f73;p=supertux.git diff --git a/src/object/falling_coin.hpp b/src/object/falling_coin.hpp index c80190246..8eeabb395 100644 --- a/src/object/falling_coin.hpp +++ b/src/object/falling_coin.hpp @@ -1,4 +1,4 @@ -// $Id: infoblock.hpp 3327 2006-04-13 15:02:40Z ravu_al_hemio $ +// $Id$ // // SuperTux // Copyright (C) 2006 Ondrej Hosek @@ -26,7 +26,7 @@ #include "video/drawing_context.hpp" #include "physic.hpp" -class FallingCoin : public GameObject +class FallingCoin : public GameObject, private UsesPhysic { public: FallingCoin(const Vector& start_position, const int x_vel); @@ -37,7 +37,6 @@ public: private: Vector pos; Sprite* sprite; - Physic physic; }; #endif