- Timestamp:
- Jan 4, 2016, 6:19:07 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentationHS15/src/modules/hover/HoverFlag.h
r11040 r11041 37 37 38 38 #include "HoverPrereqs.h" 39 #include "util/Math.h" 39 #include "objects/ObjectsPrereqs.h" 40 40 41 #include "worldentities/StaticEntity.h" 41 #include "graphics/Model.h"42 #include "objects/collisionshapes/BoxCollisionShape.h"43 44 42 45 43 namespace orxonox … … 50 48 HoverFlag(Context* context); 51 49 HoverFlag(Context* context, int xCoordinate, int yCoordinate, int cellSize); 50 virtual ~HoverFlag(); 51 52 52 virtual bool collidesAgainst(WorldEntity* otherObject, const btCollisionShape* ownCollisionShape, btManifoldPoint& contactPoint); 53 virtual ~HoverFlag(); 54 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); 55 bool getCollided(); 56 void setCollided(bool setValue); 53 54 inline bool getCollided() const 55 { return this->collided_; } 56 inline void setCollided(bool setValue) 57 { this->collided_ = setValue; } 57 58 58 59 private:
Note: See TracChangeset
for help on using the changeset viewer.