Changeset 9172 in orxonox.OLD for branches/presentation/src/world_entities/weapons/aiming_system.h
- Timestamp:
- Jul 4, 2006, 9:45:39 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/world_entities/weapons/aiming_system.h
r9168 r9172 16 16 class BVTree; 17 17 class Model; 18 class OBBTree; 18 19 19 20 … … 28 29 29 30 WorldEntity* getNearestTarget(); 31 void flushList() { this->selectionList.clear(); } 30 32 31 33 void setRange(float range){this->range = range;}; … … 39 41 private: 40 42 float range; //!< 43 float sideLength; 41 44 std::vector<WorldEntity*> selectionList; //!< the selections 42 45 43 46 WorldEntity* owner; //!< the owner of the targeting system 44 47 48 OBBTree* obbTree; 49 45 50 }; 46 51
Note: See TracChangeset
for help on using the changeset viewer.