From b691c43c44ff180d10e7d4a9afc83b98551ff586 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 1 Mar 2026 12:16:08 +0800 Subject: Initial commit --- Minecraft.World/AnimatePacket.cpp | 42 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Minecraft.World/AnimatePacket.cpp (limited to 'Minecraft.World/AnimatePacket.cpp') diff --git a/Minecraft.World/AnimatePacket.cpp b/Minecraft.World/AnimatePacket.cpp new file mode 100644 index 00000000..2ca4ed49 --- /dev/null +++ b/Minecraft.World/AnimatePacket.cpp @@ -0,0 +1,42 @@ +#include "stdafx.h" +#include +#include "InputOutputStream.h" +#include "net.minecraft.world.entity.h" +#include "PacketListener.h" +#include "AnimatePacket.h" + + + +AnimatePacket::AnimatePacket() +{ + id = -1; + action = 0; +} + +AnimatePacket::AnimatePacket(shared_ptr e, int action) +{ + id = e->entityId; + this->action = action; +} + +void AnimatePacket::read(DataInputStream *dis) //throws IOException +{ + id = dis->readInt(); + action = dis->readByte(); +} + +void AnimatePacket::write(DataOutputStream *dos) //throws IOException +{ + dos->writeInt(id); + dos->writeByte(action); +} + +void AnimatePacket::handle(PacketListener *listener) +{ + listener->handleAnimate(shared_from_this()); +} + +int AnimatePacket::getEstimatedSize() +{ + return 5; +} -- cgit v1.2.3