ProtoZed
awesome branch
A simple but powerful game framework
|
Public Member Functions | |
Sound (const SystemType &type, Application &application) | |
virtual | ~Sound () |
virtual bool | Start () |
Starts the system. | |
virtual bool | Stop () |
Stops the system. | |
virtual void | Update (float deltaTime)=0 |
Runs an update. | |
![]() | |
System (const SystemType &type, Application &application) | |
virtual | ~System () |
const SystemType & | GetType () const |
Gets the type. | |
bool | IsStarted () const |
![]() | |
EventHandler () | |
virtual | ~EventHandler () |
bool | SubscribeTo (EventHandler &handler) |
bool | UnsubscribeTo (EventHandler &handler) |
template<class T , class EventT > | |
bool | RegisterEvent (T *obj, void(T::*memFn)(EventT &)) |
template<class T , class EventT > | |
bool | UnregisterEvent (T *obj, void(T::*memFn)(EventT &)) |
void | HandleEvent (const Event &e) |
void | EmitEvent (const Event &e) const |
Additional Inherited Members | |
![]() | |
Application & | GetApplication () const |
PZ::Sound::Sound | ( | const SystemType & | type, |
Application & | application | ||
) |
|
virtual |
|
virtual |
|
virtual |
|
pure virtual |