X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=examples%2Fbassteroids%2Fsource%2Fbullet.h;h=de0804a83974826a8681f511c29d44fe48c96bff;hb=cb4e8bbe06dc64aff932784541a29493723fc03e;hp=44c9d8053e366931a3536a1803d14dc716976555;hpb=338031de484ee117762d80449d9ca472a6918c92;p=libs%2Fgame.git diff --git a/examples/bassteroids/source/bullet.h b/examples/bassteroids/source/bullet.h index 44c9d80..de0804a 100644 --- a/examples/bassteroids/source/bullet.h +++ b/examples/bassteroids/source/bullet.h @@ -2,15 +2,16 @@ #define BULLET_H_ #include -#include "physicalentity.h" +#include "hittable.h" struct BulletSetup { PhysicalSetup physical; + HittableSetup hittable; Msp::Game::MeshSourceSetup mesh; }; -class Bullet: public PhysicalEntity +class Bullet: public Hittable { private: Msp::Game::Owned mesh;