X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FCharacter.hh;h=28e588b627da8ccc0b45b49dc80cbac1b37fc258;hp=5dfde01922860cbbbe6759f00eacc5a13b1f2bee;hb=2fdb5f5824826a6c54f5afde8c62eafd24c1a152;hpb=a31d65a998121df0651c57bfb68782e2a07d2e2f diff --git a/src/Character.hh b/src/Character.hh index 5dfde01..28e588b 100644 --- a/src/Character.hh +++ b/src/Character.hh @@ -43,7 +43,7 @@ -struct Character; +class Character; typedef boost::shared_ptr CharacterP; @@ -62,6 +62,12 @@ 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; Tilemap tilemap; @@ -69,7 +75,7 @@ public: private: - static const Mf::Scalar z = 96.0; + mutable Mf::Scalar mZCoord; };