- Timestamp:
- May 4, 2017, 3:17:59 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/SuperOrxoBros_FS17/src/modules/superorxobros/SOBFigure.h
r11405 r11412 38 38 class _SOBExport SOBFigure : public ControllableEntity 39 39 { 40 40 public: 41 41 SOBFigure(Context* context); //!< Constructor. Registers and initializes the object. 42 42 virtual ~SOBFigure() {} … … 46 46 virtual void moveRightLeft(const Vector2& value) override; //!< Overloaded the function to steer the figure up and down. 47 47 48 48 49 49 virtual void boost(bool boost) override; 50 50 virtual bool collidesAgainst(WorldEntity* otherObject, const btCollisionShape* ownCollisionShape, btManifoldPoint& contactPoint) override; 51 51 52 52 53 53 //virtual void CollisionWithEnemy(SOBEnemy* enemy); 54 54 55 55 56 57 56 57 58 58 bool dead_; 59 bool predead_; 59 60 60 61 61 private: 62 62 63 63 bool gotPowerUp_; 64 64 bool moveUpPressed_; … … 74 74 bool isColliding_; 75 75 WorldEntity* particlespawner_; 76 int sgn(float x); 76 77 77 78 79 78 80 79 80 };81 }81 82 }; 83 } 82 84 83 85 #endif /* _SOBFigure_H__ */
Note: See TracChangeset
for help on using the changeset viewer.