Changeset 3677 in orxonox.OLD for orxonox/trunk/src/world_entities
- Timestamp:
- Mar 30, 2005, 6:15:46 PM (20 years ago)
- Location:
- orxonox/trunk/src/world_entities
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/primitive.cc
r3649 r3677 21 21 #include "stdincl.h" 22 22 #include "world_entity.h" 23 #include " objModel.h"23 #include "model.h" 24 24 #include "vector.h" 25 25 -
orxonox/trunk/src/world_entities/terrain.cc
r3608 r3677 17 17 #include "terrain.h" 18 18 #include "stdincl.h" 19 #include " objModel.h"19 #include "model.h" 20 20 #include "vector.h" 21 21 #include "glincl.h" … … 45 45 if (strstr(fileName, ".obj") || strstr(fileName, ".OBJ")) 46 46 { 47 this->model = ( OBJModel*)new OBJModel(fileName);47 this->model = (Model*)ResourceManager::getInstance()->load(fileName, OBJ, RP_LEVEL); 48 48 } 49 49 else -
orxonox/trunk/src/world_entities/test_gun.cc
r3675 r3677 25 25 #include "stdincl.h" 26 26 #include "world_entity.h" 27 #include " objModel.h"27 #include "model.h" 28 28 #include "projectile.h" 29 29 -
orxonox/trunk/src/world_entities/weapon.cc
r3646 r3677 21 21 #include "world_entity.h" 22 22 #include "vector.h" 23 #include " objModel.h"23 #include "model.h" 24 24 #include "projectile.h" 25 25 #include "list.h"
Note: See TracChangeset
for help on using the changeset viewer.