Changeset 9610 in orxonox.OLD for branches/proxy/src/world_entities/npcs/network_turret.h
- Timestamp:
- Jul 30, 2006, 11:33:31 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/world_entities/npcs/network_turret.h
r9608 r9610 9 9 #include "npcs/npc.h" 10 10 11 class Weapon;11 class TargetingTurret; 12 12 13 13 //! A Class to ... … … 24 24 virtual void leftWorld (); 25 25 26 26 27 virtual void destroy(WorldEntity* killer); 27 28 28 29 virtual void draw() const; 29 30 virtual void tick(float time); 31 32 33 void setTargetGroup(int targetGroup); 34 void setTargetGroupS(const std::string& targetGroup); 35 36 virtual void varChangeHandler( std::list<int> & id ); 37 30 38 31 39 private: … … 34 42 private: 35 43 PNode weaponHolder; 36 Weapon *weapon; 44 TargetingTurret *weapon; 45 46 int targetGroup; 47 int targetGroup_write; 48 49 int targetGroup_handle; 37 50 }; 38 51
Note: See TracChangeset
for help on using the changeset viewer.