Changeset 673 for code/branches/FICN/src/orxonox/objects
- Timestamp:
- Dec 22, 2007, 10:15:06 PM (17 years ago)
- Location:
- code/branches/FICN/src/orxonox/objects
- Files:
-
- 8 deleted
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/objects/Ambient.h
r507 r673 1 #ifndef _ OBJECT_AMBIENT_H__2 #define _ OBJECT_AMBIENT_H__1 #ifndef _Ambient_H__ 2 #define _Ambient_H__ 3 3 4 4 #include "BaseObject.h" … … 22 22 } 23 23 24 #endif 24 #endif /* _Ambient_H__ */ -
code/branches/FICN/src/orxonox/objects/BaseObject.cc
r637 r673 59 59 if (xmlElem->Attribute("name")) 60 60 { 61 this->setName(xmlElem->Attribute(" mesh"));61 this->setName(xmlElem->Attribute("name")); 62 62 } 63 63 } -
code/branches/FICN/src/orxonox/objects/BaseObject.h
r637 r673 24 24 } 25 25 26 #endif 26 #endif /* _BaseObject_H__ */ -
code/branches/FICN/src/orxonox/objects/BillboardSet.h
r633 r673 1 #ifndef _BillboardSet_H__ 2 #define _BillboardSet_H__ 3 1 4 #include <string> 2 5 3 6 #include "OgreBillboardSet.h" 4 5 #ifndef _BillboardSet_H__6 #define _BillboardSet_H__7 7 8 8 namespace orxonox … … 27 27 } 28 28 29 #endif 29 #endif /* _BillboardSet_H__ */ -
code/branches/FICN/src/orxonox/objects/CMakeLists.txt
r671 r673 9 9 Ambient.cc 10 10 Skybox.cc 11 SceneNode.cc11 # SceneNode.cc 12 12 BaseEntity.cc 13 Entity.cc13 # Entity.cc 14 14 Camera.cc 15 15 # SpaceshipSteeringObject.cc … … 19 19 NPC.cc 20 20 BillboardSet.cc 21 Light.cc21 # Light.cc 22 22 Projectile.cc 23 23 weapon_system/AmmunitionDump.cc -
code/branches/FICN/src/orxonox/objects/Camera.h
r515 r673 1 #ifndef _ OBJECT_CAMERA_H__2 #define _ OBJECT_CAMERA_H__1 #ifndef _Camera_H__ 2 #define _Camera_H__ 3 3 4 4 #include "BaseObject.h" … … 22 22 } 23 23 24 #endif 24 #endif /* _Camera_H__ */ -
code/branches/FICN/src/orxonox/objects/Explosion.h
r646 r673 22 22 } 23 23 24 #endif 24 #endif /* _Explosion_H__ */ -
code/branches/FICN/src/orxonox/objects/Fighter.h
r645 r673 92 92 } 93 93 94 #endif 94 #endif /* _Fighter_H__ */ -
code/branches/FICN/src/orxonox/objects/Mesh.h
r589 r673 1 #ifndef _Mesh_H__ 2 #define _Mesh_H__ 3 1 4 #include <string> 2 5 3 6 #include "OgreEntity.h" 4 5 #ifndef _Mesh_H__6 #define _Mesh_H__7 7 8 8 namespace orxonox … … 27 27 } 28 28 29 #endif 29 #endif /* _Mesh_H__ */ -
code/branches/FICN/src/orxonox/objects/Model.h
r646 r673 23 23 } 24 24 25 #endif 25 #endif /* _Model_H__ */ -
code/branches/FICN/src/orxonox/objects/NPC.h
r627 r673 5 5 */ 6 6 7 #ifndef MODULE_NPC_H8 #define MODULE_NPC_H7 #ifndef _NPC_H__ 8 #define _NPC_H__ 9 9 10 10 // includes … … 43 43 44 44 } 45 #endif 45 #endif /* _NPC_H__ */ -
code/branches/FICN/src/orxonox/objects/Projectile.h
r646 r673 26 26 } 27 27 28 #endif 28 #endif /* _Projectile_H__ */ -
code/branches/FICN/src/orxonox/objects/Skybox.h
r507 r673 1 #ifndef _ OBJECT_SKYBOX_H__2 #define _ OBJECT_SKYBOX_H__1 #ifndef _Skybox_H__ 2 #define _Skybox_H__ 3 3 4 4 #include "BaseObject.h" … … 22 22 } 23 23 24 #endif 24 #endif /* _Skybox_H__ */ -
code/branches/FICN/src/orxonox/objects/SpaceShip.h
r661 r673 123 123 } 124 124 125 #endif 125 #endif /* _SpaceShip_H__ */ -
code/branches/FICN/src/orxonox/objects/Tickable.h
r670 r673 81 81 } 82 82 83 #endif 83 #endif /* _Tickable_H__ */ -
code/branches/FICN/src/orxonox/objects/Timer.h
r670 r673 192 192 } 193 193 194 #endif 194 #endif /* _Timer_H__ */ -
code/branches/FICN/src/orxonox/objects/WorldEntity.h
r647 r673 146 146 } 147 147 148 #endif 148 #endif /* _WorldEntity_H__ */ -
code/branches/FICN/src/orxonox/objects/weapon_system/AmmunitionDump.h
r668 r673 27 27 28 28 29 #ifndef AmmunitionDump_H30 #define AmmunitionDump_H29 #ifndef _AmmunitionDump_H__ 30 #define _AmmunitionDump_H__ 31 31 32 32 #include <OgrePrerequisites.h> … … 66 66 } 67 67 68 #endif /* AmmunitionDump_H*/68 #endif /* _AmmunitionDump_H__ */ -
code/branches/FICN/src/orxonox/objects/weapon_system/BarrelGun.h
r668 r673 27 27 28 28 29 #ifndef BARREL_GUN_H30 #define BARREL_GUN_H29 #ifndef _BarrelGun_H__ 30 #define _BarrelGun_H__ 31 31 32 32 #include <OgrePrerequisites.h> … … 62 62 } 63 63 64 #endif /* BARREL_GUN_H*/64 #endif /* _BarrelGun_H__ */ -
code/branches/FICN/src/orxonox/objects/weapon_system/BaseWeapon.h
r668 r673 27 27 28 28 29 #ifndef BASE_WEAPON_H30 #define BASE_WEAPON_H29 #ifndef _BaseWeapon_H__ 30 #define _BaseWeapon_H__ 31 31 32 32 #include <OgrePrerequisites.h> … … 124 124 } 125 125 126 #endif /* BASE_WEAPON_H*/126 #endif /* _BaseWeapon_H__ */ -
code/branches/FICN/src/orxonox/objects/weapon_system/Bullet.h
r669 r673 27 27 28 28 29 #ifndef BULLET_H30 #define BULLET_H29 #ifndef _Bullet_H__ 30 #define _Bullet_H__ 31 31 32 32 #include <OgrePrerequisites.h> … … 49 49 } 50 50 51 #endif /* BULLET_H*/51 #endif /* _Bullet_H__ */ -
code/branches/FICN/src/orxonox/objects/weapon_system/BulletManager.h
r668 r673 27 27 28 28 29 #ifndef BULLET_MANAGER_H30 #define BULLET_MANAGER_H29 #ifndef _BulletManager_H__ 30 #define _BulletManager_H__ 31 31 32 32 #include <OgrePrerequisites.h> … … 67 67 } 68 68 69 #endif /* BULLET_MANAGER_H*/69 #endif /* _BulletManager_H__ */ -
code/branches/FICN/src/orxonox/objects/weapon_system/WeaponStation.h
r668 r673 27 27 28 28 29 #ifndef WEAPON_STATION_H30 #define WEAPON_STATION_H29 #ifndef _WeaponStation_H__ 30 #define _WeaponStation_H__ 31 31 32 32 #include <OgrePrerequisites.h> … … 63 63 } 64 64 65 #endif /* WEAPON_STATION_H*/65 #endif /* _WeaponStation_H__ */
Note: See TracChangeset
for help on using the changeset viewer.