Changeset 8729 for code/trunk/src/modules
- Timestamp:
- Jul 4, 2011, 2:47:44 AM (13 years ago)
- Location:
- code/trunk
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
-
code/trunk/src/modules/docking/Dock.cc
r8706 r8729 44 44 #include "worldentities/pawns/Pawn.h" 45 45 46 #include "ToluaBindDocking.h"47 48 46 namespace orxonox 49 47 { 50 // Register tolua_open function when loading the library51 DeclareToluaInterface(Docking);52 53 48 CreateFactory(Dock); 54 49 -
code/trunk/src/modules/notifications/NotificationQueueCEGUI.cc
r8706 r8729 43 43 #include "util/Convert.h" 44 44 45 #include "ToluaBindNotifications.h"46 47 45 namespace orxonox 48 46 { 49 47 50 48 CreateFactory(NotificationQueueCEGUI); 51 52 // Register tolua_open function when loading the library.53 DeclareToluaInterface(Notifications);54 49 55 50 /*static*/ const std::string NotificationQueueCEGUI::NOTIFICATION_LAYER("NotificationLayer"); -
code/trunk/src/modules/objects/eventsystem/EventFilter.cc
r6417 r8729 30 30 31 31 #include "core/CoreIncludes.h" 32 #include "core/Event.h" 32 33 #include "core/XMLPort.h" 33 34 #include "EventName.h" -
code/trunk/src/modules/objects/eventsystem/EventListener.cc
r7163 r8729 30 30 31 31 #include "core/CoreIncludes.h" 32 #include "core/Event.h" 32 33 #include "core/XMLPort.h" 33 34 -
code/trunk/src/modules/overlays/hud/GametypeFadingMessage.h
r7163 r8729 27 27 */ 28 28 29 #ifndef _Gametype InfoMessage_H__30 #define _Gametype InfoMessage_H__29 #ifndef _GametypeFadingMessage_H__ 30 #define _GametypeFadingMessage_H__ 31 31 32 32 #include "overlays/OverlaysPrereqs.h" -
code/trunk/src/modules/pickup/PickupCollectionIdentifier.h
r7533 r8729 34 34 35 35 #ifndef _PickupCollectionIdentifier_H__ 36 #define _PickupCollectionIdentifier_H_ 36 #define _PickupCollectionIdentifier_H__ 37 37 38 38 #include "PickupPrereqs.h" … … 75 75 } 76 76 77 #endif // _PickupCollectionIdentifier_H_ 77 #endif // _PickupCollectionIdentifier_H__ -
code/trunk/src/modules/pickup/PickupManager.cc
r7801 r8729 49 49 #include "PickupRepresentation.h" 50 50 51 #include "ToluaBindPickup.h"52 53 51 namespace orxonox 54 52 { 55 // Register tolua_open function when loading the library56 DeclareToluaInterface(Pickup);57 58 53 ManageScopedSingleton(PickupManager, ScopeID::Root, false); 59 54 -
code/trunk/src/modules/pong/CMakeLists.txt
r7163 r8729 1 1 SET_SOURCE_FILES(PONG_SRC_FILES 2 COMPILATION_BEGIN PongCompilation.cc2 BUILD_UNIT PongBuildUnit.cc 3 3 Pong.cc 4 4 PongAI.cc … … 8 8 PongCenterpoint.cc 9 9 PongScore.cc 10 COMPILATION_END 10 END_BUILD_UNIT 11 11 ) 12 12 -
code/trunk/src/modules/pong/PongAI.cc
r8108 r8729 36 36 #include "core/CoreIncludes.h" 37 37 #include "core/ConfigValueIncludes.h" 38 #include "core/command/Executor.h" 38 39 #include "tools/Timer.h" 39 40 -
code/trunk/src/modules/questsystem/QuestManager.cc
r8706 r8729 47 47 #include "QuestItem.h" 48 48 49 #include "ToluaBindQuestsystem.h"50 51 49 namespace orxonox 52 50 { 53 // Register tolua_open function when loading the library54 DeclareToluaInterface(Questsystem);55 56 51 ManageScopedSingleton(QuestManager, ScopeID::Root, false); 57 52 -
code/trunk/src/modules/weapons/munitions/ReplenishingMunition.cc
r5929 r8729 28 28 29 29 #include "ReplenishingMunition.h" 30 30 31 #include "core/CoreIncludes.h" 32 #include "core/command/Executor.h" 31 33 32 34 namespace orxonox -
code/trunk/src/modules/weapons/projectiles/LightningGunProjectile.cc
r6417 r8729 31 31 #include "util/Convert.h" 32 32 #include "core/CoreIncludes.h" 33 #include "core/command/Executor.h" 33 34 34 35 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.