Changeset 341 for code/branches/FICN/src/orxonox/weapon
- Timestamp:
- Nov 28, 2007, 9:54:59 PM (17 years ago)
- Location:
- code/branches/FICN/src/orxonox/weapon
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/weapon/CMakeLists.txt
r337 r341 1 1 PROJECT(Orxonox) 2 2 3 # create a few variables to simplify life 4 SET( WEAPON_SRC 3 SET( WEAPON_SRC_FILES 5 4 ammunition_dump.cc 6 5 barrel_gun.cc … … 11 10 ) 12 11 13 INCLUDE_DIRECTORIES(..) 14 15 ADD_LIBRARY(weapon ${WEAPON_SRC}) 12 ADD_LIBRARY(weapon ${WEAPON_SRC_FILES}) -
code/branches/FICN/src/orxonox/weapon/ammunition_dump.cc
r337 r341 26 26 */ 27 27 28 #include " run_manager.h"28 #include "orxonox/run_manager.h" 29 29 30 30 #include "ammunition_dump.h" -
code/branches/FICN/src/orxonox/weapon/ammunition_dump.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36 -
code/branches/FICN/src/orxonox/weapon/barrel_gun.cc
r337 r341 33 33 #include "OgreSceneManager.h" 34 34 35 #include "orxonox/inertial_node.h" 36 35 37 #include "bullet.h" 36 38 #include "bullet_manager.h" 37 #include "inertial_node.h"38 39 #include "ammunition_dump.h" 39 40 #include "base_weapon.h" -
code/branches/FICN/src/orxonox/weapon/barrel_gun.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36 -
code/branches/FICN/src/orxonox/weapon/base_weapon.cc
r337 r341 33 33 #include "OgreSceneManager.h" 34 34 35 #include "orxonox/inertial_node.h" 36 #include "orxonox/run_manager.h" 37 35 38 #include "bullet.h" 36 39 #include "bullet_manager.h" 37 #include "inertial_node.h"38 40 #include "ammunition_dump.h" 39 #include "run_manager.h"40 41 41 42 #include "base_weapon.h" -
code/branches/FICN/src/orxonox/weapon/base_weapon.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36 -
code/branches/FICN/src/orxonox/weapon/bullet.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36 -
code/branches/FICN/src/orxonox/weapon/bullet_manager.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36 -
code/branches/FICN/src/orxonox/weapon/weapon_station.h
r337 r341 32 32 #include "OgrePrerequisites.h" 33 33 34 #include "orxonox _prerequisites.h"34 #include "orxonox/orxonox_prerequisites.h" 35 35 36 36
Note: See TracChangeset
for help on using the changeset viewer.