Changeset 5725 for code/branches/libraries2/src/modules/pong
- Timestamp:
- Aug 31, 2009, 8:23:07 PM (15 years ago)
- Location:
- code/branches/libraries2/src/modules/pong
- Files:
-
- 3 added
- 14 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/libraries2/src/modules/pong/Pong.cc
r5722 r5725 31 31 #include "core/CoreIncludes.h" 32 32 #include "core/Executor.h" 33 #include " objects/worldentities/PongCenterpoint.h"34 #include " objects/worldentities/PongBall.h"35 #include " objects/worldentities/PongBat.h"36 #include " objects/infos/PongBot.h"37 #include " objects/controllers/PongAI.h"33 #include "PongCenterpoint.h" 34 #include "PongBall.h" 35 #include "PongBat.h" 36 #include "PongBot.h" 37 #include "PongAI.h" 38 38 39 39 namespace orxonox -
code/branches/libraries2/src/modules/pong/Pong.h
r5722 r5725 30 30 #define _Pong_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 34 34 #include "tools/Timer.h" 35 #include " Deathmatch.h"35 #include "objects/gametypes/Deathmatch.h" 36 36 37 37 namespace orxonox 38 38 { 39 class _ OrxonoxExport Pong : public Deathmatch39 class _PongExport Pong : public Deathmatch 40 40 { 41 41 public: -
code/branches/libraries2/src/modules/pong/PongAI.cc
r5722 r5725 33 33 #include "tools/Timer.h" 34 34 #include "objects/worldentities/ControllableEntity.h" 35 #include " objects/worldentities/PongBall.h"35 #include "PongBall.h" 36 36 37 37 namespace orxonox -
code/branches/libraries2/src/modules/pong/PongAI.h
r5722 r5725 30 30 #define _PongAI_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 34 34 #include <list> 35 35 #include "util/Math.h" 36 36 #include "tools/interfaces/Tickable.h" 37 #include " Controller.h"37 #include "objects/controllers/Controller.h" 38 38 39 39 namespace orxonox 40 40 { 41 class _ OrxonoxExport PongAI : public Controller, public Tickable41 class _PongExport PongAI : public Controller, public Tickable 42 42 { 43 43 public: -
code/branches/libraries2/src/modules/pong/PongBall.cc
r5722 r5725 32 32 #include "core/GameMode.h" 33 33 #include "objects/gametypes/Gametype.h" 34 #include " objects/worldentities/PongBat.h"34 #include "PongBat.h" 35 35 #include "sound/SoundBase.h" 36 36 -
code/branches/libraries2/src/modules/pong/PongBall.h
r5722 r5725 30 30 #define _PongBall_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 34 34 #include "util/Math.h" … … 37 37 namespace orxonox 38 38 { 39 class _ OrxonoxExport PongBall : public MovableEntity39 class _PongExport PongBall : public MovableEntity 40 40 { 41 41 public: -
code/branches/libraries2/src/modules/pong/PongBat.h
r5722 r5725 30 30 #define _PongBat_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 #include "objects/worldentities/ControllableEntity.h" 34 34 35 35 namespace orxonox 36 36 { 37 class _ OrxonoxExport PongBat : public ControllableEntity37 class _PongExport PongBat : public ControllableEntity 38 38 { 39 39 public: -
code/branches/libraries2/src/modules/pong/PongBot.cc
r5722 r5725 30 30 31 31 #include "core/CoreIncludes.h" 32 #include " objects/controllers/PongAI.h"32 #include "PongAI.h" 33 33 34 34 namespace orxonox -
code/branches/libraries2/src/modules/pong/PongBot.h
r5722 r5725 30 30 #define _PongBot_H__ 31 31 32 #include " OrxonoxPrereqs.h"33 #include " Bot.h"32 #include "pong/PongPrereqs.h" 33 #include "objects/infos/Bot.h" 34 34 35 35 namespace orxonox 36 36 { 37 class _ OrxonoxExport PongBot : public Bot37 class _PongExport PongBot : public Bot 38 38 { 39 39 public: -
code/branches/libraries2/src/modules/pong/PongCenterpoint.cc
r5722 r5725 31 31 #include "core/CoreIncludes.h" 32 32 #include "core/XMLPort.h" 33 #include " objects/gametypes/Pong.h"33 #include "Pong.h" 34 34 35 35 namespace orxonox -
code/branches/libraries2/src/modules/pong/PongCenterpoint.h
r5722 r5725 30 30 #define _PongCenterpoint_H__ 31 31 32 #include " OrxonoxPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 34 34 #include <string> … … 38 38 namespace orxonox 39 39 { 40 class _ OrxonoxExport PongCenterpoint : public StaticEntity40 class _PongExport PongCenterpoint : public StaticEntity 41 41 { 42 42 public: -
code/branches/libraries2/src/modules/pong/PongScore.cc
r5722 r5725 32 32 #include "core/CoreIncludes.h" 33 33 #include "core/XMLPort.h" 34 #include " objects/gametypes/Pong.h"34 #include "Pong.h" 35 35 #include "objects/infos/PlayerInfo.h" 36 36 -
code/branches/libraries2/src/modules/pong/PongScore.h
r5722 r5725 30 30 #define _PongScore_H__ 31 31 32 #include " overlays/OverlaysPrereqs.h"32 #include "pong/PongPrereqs.h" 33 33 34 34 #include "tools/interfaces/Tickable.h" … … 37 37 namespace orxonox 38 38 { 39 class _ OverlaysExport PongScore : public OverlayText, public Tickable39 class _PongExport PongScore : public OverlayText, public Tickable 40 40 { 41 41 public:
Note: See TracChangeset
for help on using the changeset viewer.