blob: 6fe3bf899060272802521118325e90c3ee8e4245 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#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;
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; }
};
|