Changeset 3851 in orxonox.OLD for orxonox/trunk/src/world_entities
- Timestamp:
- Apr 17, 2005, 1:21:59 PM (20 years ago)
- Location:
- orxonox/trunk/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/test_gun.cc
r3847 r3851 30 30 #include "vector.h" 31 31 #include "list.h" 32 #include " simple_animation.h"32 #include "animation3d.h" 33 33 34 34 using namespace std; … … 53 53 54 54 55 this->animato r = SimpleAnimation::getInstance();55 this->animaton = new Animation3D; 56 56 this->dummy1 = new WorldEntity(); // a world entity that is not drawed: use this for the weapon 57 57 /* -
orxonox/trunk/src/world_entities/test_gun.h
r3757 r3851 29 29 class Vector; 30 30 class Quaternion; 31 class SimpleAnimation;31 class Animation3D; 32 32 33 33 … … 52 52 53 53 private: 54 SimpleAnimation* animator;54 Animation3D* animaton; 55 55 Vector* projOffset; 56 56 WorldEntity* dummy1;
Note: See TracChangeset
for help on using the changeset viewer.