diff options
Diffstat (limited to 'src/core/application.h')
-rw-r--r-- | src/core/application.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/application.h b/src/core/application.h index ef89e70..0dfa652 100644 --- a/src/core/application.h +++ b/src/core/application.h @@ -9,6 +9,7 @@ #include "sys/sys.h" #include "core/commandbuffer.h" +#include "core/message.h" #include "core/netserver.h" #include "core/netconnection.h" #include "core/gameinterface.h" @@ -62,7 +63,7 @@ public: virtual void notify_sound(const char * name); /// text notifications from the core to the application - virtual void notify_message(std::string const & message); + virtual void notify_message(Message::Channel const channel, std::string const message); /// remove sound source notification virtual void notify_remove_sound(size_t source); @@ -70,6 +71,9 @@ public: /// zone clear notification virtual void notify_zoneclear(Zone *zone); + /// disconnect notification + virtual void notify_disconnect(); + /*----- static --------------------------------------------------- */ /// a pointer to the current application instance |