Changeset 9654
- Timestamp:
- Aug 16, 2013, 11:08:30 PM (11 years ago)
- Location:
- code/branches/core6/src/orxonox
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/orxonox/controllers/ArtificialController.cc
r9629 r9654 44 44 { 45 45 SetConsoleCommand("ArtificialController", "setbotlevel", &ArtificialController::setAllBotLevel); 46 47 RegisterClass(ArtificialController); 46 48 47 49 ArtificialController::ArtificialController(Context* context) : FormationController(context) -
code/branches/core6/src/orxonox/controllers/FormationController.cc
r9629 r9654 56 56 SetConsoleCommand("FormationController", "formationsize", &FormationController::formationsize); 57 57 58 59 58 RegisterClass(FormationController); 60 59 61 60 static const unsigned int STANDARD_MAX_FORMATION_SIZE = 9; -
code/branches/core6/src/orxonox/infos/Info.cc
r9629 r9654 32 32 namespace orxonox 33 33 { 34 RegisterClass(Info); 35 34 36 Info::Info(Context* context) : BaseObject(context), Synchronisable(context) 35 37 { -
code/branches/core6/src/orxonox/items/Item.cc
r9629 r9654 32 32 namespace orxonox 33 33 { 34 RegisterClass(Item); 35 34 36 Item::Item(Context* context) : BaseObject(context), Synchronisable(context) 35 37 { -
code/branches/core6/src/orxonox/overlays/OrxonoxOverlay.cc
r9629 r9654 62 62 SetConsoleCommand("OrxonoxOverlay", "show", &OrxonoxOverlay::showOverlay); 63 63 SetConsoleCommand("OrxonoxOverlay", "rotateOverlay", &OrxonoxOverlay::rotateOverlay); 64 65 RegisterClass(OrxonoxOverlay); 64 66 65 67 OrxonoxOverlay::OrxonoxOverlay(Context* context) -
code/branches/core6/src/orxonox/worldentities/MobileEntity.cc
r9629 r9654 39 39 namespace orxonox 40 40 { 41 RegisterClass(MobileEntity); 42 41 43 MobileEntity::MobileEntity(Context* context) : WorldEntity(context) 42 44 {
Note: See TracChangeset
for help on using the changeset viewer.