mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-28 23:43:36 +00:00
37 lines
942 B
C++
37 lines
942 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <memory>
|
|
|
|
#include "Packet.h"
|
|
#include "minecraft/network/packet/Packet.h"
|
|
|
|
class Entity;
|
|
|
|
class TeleportEntityPacket
|
|
: public Packet,
|
|
public std::enable_shared_from_this<TeleportEntityPacket> {
|
|
public:
|
|
int id;
|
|
int x, y, z;
|
|
uint8_t yRot, xRot;
|
|
|
|
TeleportEntityPacket();
|
|
TeleportEntityPacket(std::shared_ptr<Entity> e);
|
|
TeleportEntityPacket(int id, int x, int y, int z, uint8_t yRot,
|
|
uint8_t xRot);
|
|
|
|
virtual void read(DataInputStream* dis);
|
|
virtual void write(DataOutputStream* dos);
|
|
virtual void handle(PacketListener* listener);
|
|
virtual int getEstimatedSize();
|
|
virtual bool canBeInvalidated();
|
|
virtual bool isInvalidatedBy(std::shared_ptr<Packet> packet);
|
|
|
|
public:
|
|
static std::shared_ptr<Packet> create() {
|
|
return std::make_shared<TeleportEntityPacket>();
|
|
}
|
|
virtual int getId() { return 34; }
|
|
}; |