Changeset 9638 for code/branches/core6/src/modules/pong
- Timestamp:
- Aug 11, 2013, 5:52:29 PM (11 years ago)
- Location:
- code/branches/core6/src/modules/pong
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/modules/pong/Pong.cc
r9629 r9638 53 53 CreateEventName(PongCenterpoint, left); 54 54 55 CreateUnloadableFactory(Pong);55 RegisterUnloadableClass(Pong); 56 56 57 57 /** -
code/branches/core6/src/modules/pong/PongAI.cc
r9629 r9638 45 45 namespace orxonox 46 46 { 47 CreateUnloadableFactory(PongAI);47 RegisterUnloadableClass(PongAI); 48 48 49 49 const static float MAX_REACTION_TIME = 0.4f; -
code/branches/core6/src/modules/pong/PongBall.cc
r9629 r9638 43 43 namespace orxonox 44 44 { 45 CreateFactory(PongBall);45 RegisterClass(PongBall); 46 46 47 47 const float PongBall::MAX_REL_Z_VELOCITY = 1.5; -
code/branches/core6/src/modules/pong/PongBat.cc
r9629 r9638 39 39 namespace orxonox 40 40 { 41 CreateFactory(PongBat);41 RegisterClass(PongBat); 42 42 43 43 /** -
code/branches/core6/src/modules/pong/PongBot.cc
r9629 r9638 39 39 namespace orxonox 40 40 { 41 CreateFactory(PongBot);41 RegisterClass(PongBot); 42 42 43 43 /** -
code/branches/core6/src/modules/pong/PongCenterpoint.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(PongCenterpoint);43 RegisterClass(PongCenterpoint); 44 44 45 45 /** -
code/branches/core6/src/modules/pong/PongScore.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(PongScore);46 RegisterClass(PongScore); 47 47 48 48 /**
Note: See TracChangeset
for help on using the changeset viewer.