19 lines
423 B
C++
19 lines
423 B
C++
#include <blitz/protocol/PacketHandler.h>
|
|
|
|
namespace blitz {
|
|
namespace client {
|
|
|
|
class PlayerListHandler : public protocol::PacketHandler {
|
|
public:
|
|
PlayerListHandler(network::EnetConnection& a_Connection, EnttWorld& a_World);
|
|
~PlayerListHandler();
|
|
|
|
NazaraSlot(network::EnetConnection, OnPlayerList, m_Slot);
|
|
|
|
private:
|
|
void Handle(const protocol::data::PlayerList&);
|
|
};
|
|
|
|
} // namespace client
|
|
} // namespace blitz
|