Changeset 6040 in orxonox.OLD for branches/powerups/src/world_entities/power_ups/power_up.h
- Timestamp:
- Dec 11, 2005, 1:34:18 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/powerups/src/world_entities/power_ups/power_up.h
r5973 r6040 9 9 #include "world_entity.h" 10 10 11 class Material; 12 11 13 class PowerUp : public WorldEntity { 12 14 … … 15 17 void collidesWith (WorldEntity* entity, const Vector& location); 16 18 19 void draw(); 20 17 21 protected: 18 PowerUp( );22 PowerUp(float r, float g, float b); 19 23 virtual ~PowerUp (); 20 24 virtual void hide(); 25 26 static Model* sphereModel; 27 28 private: 29 Material* sphereMaterial; 21 30 }; 22 31
Note: See TracChangeset
for help on using the changeset viewer.