implement server and client player join/leave notifications
This commit is contained in:
18
include/client/handlers/LoggingSuccessHandler.h
Normal file
18
include/client/handlers/LoggingSuccessHandler.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#include <blitz/protocol/PacketHandler.h>
|
||||
|
||||
namespace blitz {
|
||||
namespace client {
|
||||
|
||||
class LoggingSuccessHandler : public protocol::PacketHandler {
|
||||
public:
|
||||
LoggingSuccessHandler(network::EnetConnection& a_Connection, EnttWorld& a_World);
|
||||
~LoggingSuccessHandler();
|
||||
|
||||
NazaraSlot(network::EnetConnection, OnLoggingSuccess, m_Slot);
|
||||
|
||||
private:
|
||||
void Handle(const protocol::data::LoggingSuccess&);
|
||||
};
|
||||
|
||||
} // namespace client
|
||||
} // namespace blitz
|
||||
Reference in New Issue
Block a user