Changeset 9638 for code/branches/core6/src/modules/overlays/hud
- Timestamp:
- Aug 11, 2013, 5:52:29 PM (11 years ago)
- Location:
- code/branches/core6/src/modules/overlays/hud
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/modules/overlays/hud/AnnounceMessage.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(AnnounceMessage);36 RegisterClass(AnnounceMessage); 37 37 38 38 AnnounceMessage::AnnounceMessage(Context* context) : FadeoutText(context) -
code/branches/core6/src/modules/overlays/hud/ChatOverlay.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(ChatOverlay);46 RegisterClass(ChatOverlay); 47 47 48 48 ChatOverlay::ChatOverlay(Context* context) -
code/branches/core6/src/modules/overlays/hud/DeathMessage.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(DeathMessage);36 RegisterClass(DeathMessage); 37 37 38 38 DeathMessage::DeathMessage(Context* context) : FadeoutText(context) -
code/branches/core6/src/modules/overlays/hud/GametypeFadingMessage.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(GametypeFadingMessage);36 RegisterClass(GametypeFadingMessage); 37 37 38 38 GametypeFadingMessage::GametypeFadingMessage(Context* context) : FadeoutText(context) -
code/branches/core6/src/modules/overlays/hud/GametypeStaticMessage.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateFactory(GametypeStaticMessage);38 RegisterClass(GametypeStaticMessage); 39 39 40 40 -
code/branches/core6/src/modules/overlays/hud/HUDBar.cc
r9629 r9638 45 45 namespace orxonox 46 46 { 47 CreateFactory(BarColour);47 RegisterClass(BarColour); 48 48 49 49 BarColour::BarColour(Context* context) -
code/branches/core6/src/modules/overlays/hud/HUDBoostBar.cc
r9629 r9638 35 35 namespace orxonox 36 36 { 37 CreateFactory(HUDBoostBar);37 RegisterClass(HUDBoostBar); 38 38 39 39 HUDBoostBar::HUDBoostBar(Context* context) -
code/branches/core6/src/modules/overlays/hud/HUDEnemyHealthBar.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(HUDEnemyHealthBar);36 RegisterClass(HUDEnemyHealthBar); 37 37 38 38 HUDEnemyHealthBar::HUDEnemyHealthBar(Context* context) : HUDHealthBar(context) -
code/branches/core6/src/modules/overlays/hud/HUDHealthBar.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(HUDHealthBar);39 RegisterClass(HUDHealthBar); 40 40 41 41 HUDHealthBar::HUDHealthBar(Context* context) : HUDBar(context) -
code/branches/core6/src/modules/overlays/hud/HUDNavigation.cc
r9629 r9638 67 67 return a.second < b.second; 68 68 } 69 CreateFactory( HUDNavigation );69 RegisterClass ( HUDNavigation ); 70 70 71 71 HUDNavigation* HUDNavigation::localHUD_s = 0; -
code/branches/core6/src/modules/overlays/hud/HUDRadar.cc
r9629 r9638 44 44 namespace orxonox 45 45 { 46 CreateFactory(HUDRadar);46 RegisterClass(HUDRadar); 47 47 48 48 HUDRadar::HUDRadar(Context* context) -
code/branches/core6/src/modules/overlays/hud/HUDSpeedBar.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateFactory(HUDSpeedBar);38 RegisterClass(HUDSpeedBar); 39 39 40 40 HUDSpeedBar::HUDSpeedBar(Context* context) -
code/branches/core6/src/modules/overlays/hud/HUDTimer.cc
r9629 r9638 36 36 namespace orxonox 37 37 { 38 CreateFactory(HUDTimer);38 RegisterClass(HUDTimer); 39 39 40 40 HUDTimer::HUDTimer(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/hud/KillMessage.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(KillMessage);36 RegisterClass(KillMessage); 37 37 38 38 KillMessage::KillMessage(Context* context) : FadeoutText(context) -
code/branches/core6/src/modules/overlays/hud/LastManStandingInfos.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(LastManStandingInfos);39 RegisterClass(LastManStandingInfos); 40 40 41 41 LastManStandingInfos::LastManStandingInfos(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/hud/LastTeamStandingInfos.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(LastTeamStandingInfos);39 RegisterClass(LastTeamStandingInfos); 40 40 41 41 LastTeamStandingInfos::LastTeamStandingInfos(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/hud/PauseNotice.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(PauseNotice);36 RegisterClass(PauseNotice); 37 37 38 38 PauseNotice::PauseNotice(Context* context) : OverlayText(context) -
code/branches/core6/src/modules/overlays/hud/TeamBaseMatchScore.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(TeamBaseMatchScore);39 RegisterClass(TeamBaseMatchScore); 40 40 41 41 TeamBaseMatchScore::TeamBaseMatchScore(Context* context) : OverlayText(context)
Note: See TracChangeset
for help on using the changeset viewer.