X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FCharacter.hh;h=6507906d067cf9c3d78162dd6a32916fafa9b76e;hp=28e588b627da8ccc0b45b49dc80cbac1b37fc258;hb=b357615aba1dbde81e3c6999366604e6001010a7;hpb=2fdb5f5824826a6c54f5afde8c62eafd24c1a152 diff --git a/src/Character.hh b/src/Character.hh index 28e588b..6507906 100644 --- a/src/Character.hh +++ b/src/Character.hh @@ -34,7 +34,6 @@ #include #include #include -#include #include #include @@ -52,7 +51,7 @@ typedef boost::shared_ptr CharacterP; * includes the heroine herself and the bad guys. */ -class Character : public Mf::RigidBody2, public Mf::OctreeInsertable +class Character : public Mf::RigidBody2 { public: @@ -62,20 +61,14 @@ public: virtual void update(Mf::Scalar t, Mf::Scalar dt); virtual void draw(Mf::Scalar alpha) const; - void setZCoord(Mf::Scalar z); - void addImpulse(Mf::Vector2 impulse); void addForce(Mf::Vector2 force); void setPosition(Mf::Vector2 position); - virtual int getOctant(const Mf::Aabb& aabb) const; + //virtual int getOctant(const Mf::Aabb<3>& aabb) const; Tilemap tilemap; Animation animation; - -private: - - mutable Mf::Scalar mZCoord; };