first commit

This commit is contained in:
murdle
2026-03-01 02:38:58 +02:00
commit 19250b9db4
19111 changed files with 4358159 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
#include "stdafx.h"
#include <iostream>
#include "InputOutputStream.h"
#include "PacketListener.h"
#include "SetCarriedItemPacket.h"
SetCarriedItemPacket::SetCarriedItemPacket()
{
slot = 0;
}
SetCarriedItemPacket::SetCarriedItemPacket(int slot)
{
this->slot = slot;
}
void SetCarriedItemPacket::read(DataInputStream *dis) //throws IOException
{
slot = dis->readShort();
}
void SetCarriedItemPacket::write(DataOutputStream *dos) //throws IOException
{
dos->writeShort(slot);
}
void SetCarriedItemPacket::handle(PacketListener *listener)
{
listener->handleSetCarriedItem(shared_from_this());
}
int SetCarriedItemPacket::getEstimatedSize()
{
return 2;
}
bool SetCarriedItemPacket::canBeInvalidated()
{
return true;
}
bool SetCarriedItemPacket::isInvalidatedBy(shared_ptr<Packet> packet)
{
return true;
}