#ifndef _BUNNY_H_ #define _BUNNY_H_ #include "Object.h" class Bunny : public Object { public: Bunny(Layer* layer); void update(float timeStep); private: float timeFellIntoWater; wgd::vector3d lastTile; }; #endif //_BUNNY_H_