Changeset 4287 in orxonox.OLD for orxonox/trunk/src/world_entities
- Timestamp:
- May 26, 2005, 12:22:19 AM (20 years ago)
- Location:
- orxonox/trunk/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/player.cc
r4261 r4287 27 27 #include "list.h" 28 28 #include "stdincl.h" 29 30 #include "object_manager.h" 31 #include "projectile.h" 29 32 30 33 using namespace std; … … 59 62 this->weaponMan->addWeapon(wpRight, W_CONFIG2); 60 63 this->weaponMan->addWeapon(wpLeft, W_CONFIG2); 61 62 64 } 63 65 … … 104 106 this->weaponMan->addWeapon(wpRight, W_CONFIG2); 105 107 this->weaponMan->addWeapon(wpLeft, W_CONFIG2); 108 109 BaseObject* p = new Projectile(wpRight); 110 ObjectManager::getInstance()->cache(CL_PROJECTILE, 100, *p); 111 ObjectManager::getInstance()->debug(); 112 106 113 } 107 114 -
orxonox/trunk/src/world_entities/test_gun.cc
r4006 r4287 31 31 #include "list.h" 32 32 #include "animation3d.h" 33 33 34 34 35 using namespace std;
Note: See TracChangeset
for help on using the changeset viewer.