29 #ifndef _CountDown_H__ 30 #define _CountDown_H__ 47 virtual void changedOwner()
override;
48 virtual void tick(
float dt)
override;
51 { this->counter_ = value + 0.99f; }
53 {
return this->counter_; }
55 { this->speed_ = value; }
57 {
return this->speed_; }
Definition: OverlayText.h:41
float getCounter() const
Definition: CountDown.h:52
Declaration of the Tickable interface.
void setCounter(float value)
Definition: CountDown.h:50
xmlelement
Definition: Super.h:519
float counter_
Definition: CountDown.h:63
#define _OverlaysExport
Definition: OverlaysPrereqs.h:60
Die Wagnis Klasse hat die folgenden Aufgaben:
Definition: ApplicationPaths.cc:66
Shared library macros, enums, constants and forward declarations for the overlays module ...
Mode
Definition: CorePrereqs.h:102
PlayerInfo * owner_
Definition: CountDown.h:62
float speed_
Definition: CountDown.h:64
bool hasStopped_
Definition: CountDown.h:65
void setSpeed(float value)
Definition: CountDown.h:54
Definition: PlayerInfo.h:39
float getSpeed() const
Definition: CountDown.h:56
The Tickable interface provides a tick(dt) function, that gets called every frame.
Definition: Tickable.h:52
Definition: CountDown.h:40