Changeset 5724 for code/branches/libraries2/src/modules/weapons/munitions
- Timestamp:
- Aug 31, 2009, 6:08:26 PM (15 years ago)
- Location:
- code/branches/libraries2/src/modules/weapons/munitions
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/libraries2/src/modules/weapons/munitions/CMakeLists.txt
r5693 r5724 1 ADD_SOURCE_FILES(WEAPONS YSTEM_SRC_FILES1 ADD_SOURCE_FILES(WEAPONS_SRC_FILES 2 2 ReplenishingMunition.cc 3 3 LaserMunition.cc -
code/branches/libraries2/src/modules/weapons/munitions/FusionMunition.h
r5693 r5724 30 30 #define _FusionMunition_H__ 31 31 32 #include " objects/weaponsystem/WeaponsystemPrereqs.h"32 #include "weapons/WeaponsPrereqs.h" 33 33 #include "objects/weaponsystem/Munition.h" 34 34 35 35 namespace orxonox 36 36 { 37 class _Weapons ystemExport FusionMunition : public Munition37 class _WeaponsExport FusionMunition : public Munition 38 38 { 39 39 public: -
code/branches/libraries2/src/modules/weapons/munitions/LaserMunition.h
r5693 r5724 30 30 #define _LaserMunition_H__ 31 31 32 #include " objects/weaponsystem/WeaponsystemPrereqs.h"32 #include "weapons/WeaponsPrereqs.h" 33 33 #include "ReplenishingMunition.h" 34 34 35 35 namespace orxonox 36 36 { 37 class _Weapons ystemExport LaserMunition : public ReplenishingMunition37 class _WeaponsExport LaserMunition : public ReplenishingMunition 38 38 { 39 39 public: -
code/branches/libraries2/src/modules/weapons/munitions/ReplenishingMunition.h
r5693 r5724 30 30 #define _ReplenishingMunition_H__ 31 31 32 #include " objects/weaponsystem/WeaponsystemPrereqs.h"32 #include "weapons/WeaponsPrereqs.h" 33 33 34 34 #include "tools/Timer.h" … … 37 37 namespace orxonox 38 38 { 39 class _Weapons ystemExport ReplenishingMunition : public Munition39 class _WeaponsExport ReplenishingMunition : public Munition 40 40 { 41 41 public:
Note: See TracChangeset
for help on using the changeset viewer.