Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 11, 2005, 1:34:18 AM (19 years ago)
Author:
manuel
Message:

hopefully we see some colored spheres arounf powerups now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/powerups/src/world_entities/power_ups/power_up.h

    r5973 r6040  
    99#include "world_entity.h"
    1010
     11class Material;
     12
    1113class PowerUp : public WorldEntity {
    1214
     
    1517  void collidesWith (WorldEntity* entity, const Vector& location);
    1618
     19  void draw();
     20
    1721protected:
    18   PowerUp();
     22  PowerUp(float r, float g, float b);
    1923  virtual ~PowerUp ();
    2024  virtual void hide();
     25
     26  static Model* sphereModel;
     27
     28private:
     29  Material* sphereMaterial;
    2130};
    2231
Note: See TracChangeset for help on using the changeset viewer.