Changeset 5693 for code/trunk/src/orxonox/objects/weaponsystem/projectiles
- Timestamp:
- Aug 29, 2009, 10:19:38 PM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/libraries (added) merged: 5612-5613,5615-5619,5621-5623,5625-5640,5642-5643,5647-5649,5665-5666,5685-5687,5692
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/objects/weaponsystem/projectiles/BillboardProjectile.h
r3196 r5693 30 30 #define _BillboardProjectile_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "objects/weaponsystem/WeaponsystemPrereqs.h" 33 33 34 34 #include "util/Math.h" … … 38 38 namespace orxonox 39 39 { 40 class _ OrxonoxExport BillboardProjectile : public Projectile40 class _WeaponsystemExport BillboardProjectile : public Projectile 41 41 { 42 42 public: -
code/trunk/src/orxonox/objects/weaponsystem/projectiles/CMakeLists.txt
r3053 r5693 1 ADD_SOURCE_FILES( ORXONOX_SRC_FILES1 ADD_SOURCE_FILES(WEAPONSYSTEM_SRC_FILES 2 2 BillboardProjectile.cc 3 3 ParticleProjectile.cc -
code/trunk/src/orxonox/objects/weaponsystem/projectiles/LightningGunProjectile.h
r3196 r5693 30 30 #define _LightningGunProjectile_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "objects/weaponsystem/WeaponsystemPrereqs.h" 33 33 34 34 #include <string> … … 38 38 namespace orxonox 39 39 { 40 class _ OrxonoxExport LightningGunProjectile : public BillboardProjectile40 class _WeaponsystemExport LightningGunProjectile : public BillboardProjectile 41 41 { 42 42 public: 43 43 LightningGunProjectile(BaseObject* creator); 44 44 virtual ~LightningGunProjectile() {} 45 45 46 46 virtual void setMaterial(const std::string& material); 47 47 48 48 protected: 49 void changeTexture(); 49 void changeTexture(); 50 50 unsigned int textureIndex_; 51 51 unsigned int maxTextureIndex_; -
code/trunk/src/orxonox/objects/weaponsystem/projectiles/ParticleProjectile.h
r3196 r5693 30 30 #define _ParticleProjectile_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "objects/weaponsystem/WeaponsystemPrereqs.h" 33 33 #include "BillboardProjectile.h" 34 34 35 35 namespace orxonox 36 36 { 37 class _ OrxonoxExport ParticleProjectile : public BillboardProjectile37 class _WeaponsystemExport ParticleProjectile : public BillboardProjectile 38 38 { 39 39 public: -
code/trunk/src/orxonox/objects/weaponsystem/projectiles/Projectile.h
r3196 r5693 30 30 #define _Projectile_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "objects/weaponsystem/WeaponsystemPrereqs.h" 33 33 34 34 #include "tools/Timer.h" … … 38 38 namespace orxonox 39 39 { 40 class _ OrxonoxExport Projectile : public MovableEntity, public PawnListener40 class _WeaponsystemExport Projectile : public MovableEntity, public PawnListener 41 41 { 42 42 public:
Note: See TracChangeset
for help on using the changeset viewer.