mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-05-29 15:04:34 +00:00
removed git history
This commit is contained in:
37
Minecraft.World/KickPlayerPacket.cpp
Normal file
37
Minecraft.World/KickPlayerPacket.cpp
Normal file
@@ -0,0 +1,37 @@
|
||||
#include "stdafx.h"
|
||||
#include <iostream>
|
||||
#include "InputOutputStream.h"
|
||||
#include "PacketListener.h"
|
||||
#include "KickPlayerPacket.h"
|
||||
|
||||
|
||||
|
||||
KickPlayerPacket::KickPlayerPacket()
|
||||
{
|
||||
m_networkSmallId = 0;
|
||||
}
|
||||
|
||||
KickPlayerPacket::KickPlayerPacket(BYTE 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(m_networkSmallId);
|
||||
}
|
||||
|
||||
int KickPlayerPacket::getEstimatedSize()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
Reference in New Issue
Block a user