Files
LegacyRenouveau/Minecraft.World/TileEntityDataPacket.h
T
Tranqlmao a4c746bee4 TU43 Structures, bug fixes & minor changes
- Elytra flight, damage, kinetic energy, pretty much any bug someone reported, paper doll, etc.
- Fossil & Igloo generation
- Texture interpolation
- Iggy mouse fix for world settings
- Neo branding on main screen
- Release build txt logger
- Debug mode spectator
- Several server fixes
- Flowerpot fixes
- Several more changes made in TU43
2026-07-11 19:30:16 -04:00

38 lines
913 B
C++

#pragma once
using namespace std;
#include "Packet.h"
class CompoundTag;
class TileEntityDataPacket : public Packet, public enable_shared_from_this<TileEntityDataPacket>
{
public:
static const int TYPE_MOB_SPAWNER = 1;
static const int TYPE_ADV_COMMAND = 2;
static const int TYPE_BEACON = 3;
static const int TYPE_SKULL = 4;
static const int TYPE_BANNER = 5;
static const int TYPE_FLOWER_POT = 6;
int x, y, z;
int type;
CompoundTag *tag;
private:
void _init();
public:
TileEntityDataPacket();
~TileEntityDataPacket();
TileEntityDataPacket(int x, int y, int z, int type, CompoundTag *tag);
virtual void read(DataInputStream *dis);
virtual void write(DataOutputStream *dos);
virtual void handle(PacketListener *listener);
virtual int getEstimatedSize();
public:
static shared_ptr<Packet> create() { return std::make_shared<TileEntityDataPacket>(); }
virtual int getId() { return 132; }
};