4jcraft/targets/minecraft/network/packet/InteractPacket.h
2026-04-01 13:27:58 -05:00

29 lines
726 B
C++

#pragma once
#include <memory>
#include "Packet.h"
#include "minecraft/network/packet/Packet.h"
class InteractPacket : public Packet,
public std::enable_shared_from_this<InteractPacket> {
public:
static const int INTERACT;
static const int ATTACK;
int source, target, action;
InteractPacket();
InteractPacket(int source, int target, int action);
virtual void read(DataInputStream* dis);
virtual void write(DataOutputStream* dos);
virtual void handle(PacketListener* listener);
virtual int getEstimatedSize();
public:
static std::shared_ptr<Packet> create() {
return std::make_shared<InteractPacket>();
}
virtual int getId() { return 7; }
};