Changeset 5143 in orxonox.OLD for trunk/src/world_entities
- Timestamp:
- Aug 27, 2005, 12:32:41 AM (19 years ago)
- Location:
- trunk/src/world_entities
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/environment.cc
r5054 r5143 18 18 19 19 #include "environment.h" 20 #include "stdincl.h" 21 #include "world_entity.h" 20 21 #include "resource_manager.h" 22 22 23 #include "vector.h" 23 24 #include "objModel.h" -
trunk/src/world_entities/player.cc
r5064 r5143 18 18 #include "player.h" 19 19 20 #include "shell_command.h" 20 21 #include "track_manager.h" 21 22 #include "objModel.h" … … 114 115 115 116 117 ShellCommand<Player>::registerCommand("init", CL_PLAYER, &Player::init); 116 118 //this->weaponMan->addWeapon(turret, 3, 0); 117 119 -
trunk/src/world_entities/terrain.cc
r4998 r5143 23 23 #include "factory.h" 24 24 #include "load_param.h" 25 25 #include "resource_manager.h" 26 26 #include "spatial_separation.h" 27 27 -
trunk/src/world_entities/weapons/weapon.cc
r5041 r5143 23 23 #include "projectile.h" 24 24 25 #include "resource_manager.h" 25 26 #include "class_list.h" 26 27 #include "load_param.h" -
trunk/src/world_entities/world_entity.cc
r5066 r5143 19 19 20 20 #include "world_entity.h" 21 22 #include "resource_manager.h" 23 #include "load_param.h" 21 24 #include "list.h" 22 25 #include "vector.h" -
trunk/src/world_entities/world_entity.h
r5061 r5143 8 8 9 9 #include "p_node.h" 10 #include "resource_manager.h" 10 11 11 #include "factory.h" 12 #include "load_param.h"13 #include "bv_tree.h"14 12 #include "model.h" 15 13 … … 20 18 class SoundBuffer; 21 19 class SoundSource; 20 class BVTree; 22 21 23 22 … … 50 49 51 50 /** @returns a reference to the obb tree of this worldentity */ 52 BVTree* getOBBTree() { return this->obbTree; } 51 BVTree* getOBBTree() { return this->obbTree; }; 53 52 54 53 virtual void postSpawn ();
Note: See TracChangeset
for help on using the changeset viewer.