mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 07:23:41 +00:00
28 lines
755 B
C++
28 lines
755 B
C++
#include "KickPlayerPacket.h"
|
|
|
|
#include "PacketListener.h"
|
|
#include "java/InputOutputStream/DataInputStream.h"
|
|
#include "java/InputOutputStream/DataOutputStream.h"
|
|
|
|
KickPlayerPacket::KickPlayerPacket() { m_networkSmallId = 0; }
|
|
|
|
KickPlayerPacket::KickPlayerPacket(std::uint8_t networkSmallId) {
|
|
m_networkSmallId = networkSmallId;
|
|
}
|
|
|
|
void KickPlayerPacket::handle(PacketListener* listener) {
|
|
listener->handleKickPlayer(shared_from_this());
|
|
}
|
|
|
|
void KickPlayerPacket::read(DataInputStream* dis) // throws IOException
|
|
{
|
|
m_networkSmallId = dis->readByte();
|
|
}
|
|
|
|
void KickPlayerPacket::write(DataOutputStream* dos) // throws IOException
|
|
{
|
|
dos->writeByte((std::uint8_t)m_networkSmallId);
|
|
}
|
|
|
|
int KickPlayerPacket::getEstimatedSize() { return 1; }
|