Changeset 4780 in orxonox.OLD for orxonox/trunk/src/world_entities/weapons
- Timestamp:
- Jul 2, 2005, 10:55:47 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/weapons/crosshair.cc
r4779 r4780 17 17 18 18 #include "crosshair.h" 19 19 #include "event_handler.h" 20 20 using namespace std; 21 21 … … 23 23 /** 24 24 \brief standard constructor 25 \todo this constructor is not jet implemented - do it26 25 */ 27 26 Crosshair::Crosshair () … … 30 29 this->setName("Crosshair"); 31 30 31 EventHandler::getInstance()->subscribe(this, ES_GAME, EV_MOUSE_MOTION); 32 32 33 } 33 34 … … 35 36 /** 36 37 \brief standard deconstructor 37 38 38 */ 39 39 Crosshair::~Crosshair () … … 44 44 void Crosshair::process(const Event &event) 45 45 { 46 46 printf("wow\n"); 47 47 48 48 }
Note: See TracChangeset
for help on using the changeset viewer.