mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-16 19:31:53 +00:00
TU19: merge Minecraft.World/Network
This commit is contained in:
37
Minecraft.World/Network/Packets/TileEditorOpenPacket.cpp
Normal file
37
Minecraft.World/Network/Packets/TileEditorOpenPacket.cpp
Normal file
@@ -0,0 +1,37 @@
|
||||
#include "../../Platform/stdafx.h"
|
||||
|
||||
#include "PacketListener.h"
|
||||
#include "TileEditorOpenPacket.h"
|
||||
|
||||
TileEditorOpenPacket::TileEditorOpenPacket() {
|
||||
editorType = 0;
|
||||
x = y = z = 0;
|
||||
}
|
||||
|
||||
TileEditorOpenPacket::TileEditorOpenPacket(int editorType, int x, int y,
|
||||
int z) {
|
||||
this->editorType = editorType;
|
||||
this->x = x;
|
||||
this->y = y;
|
||||
this->z = z;
|
||||
}
|
||||
|
||||
void TileEditorOpenPacket::handle(PacketListener* listener) {
|
||||
listener->handleTileEditorOpen(shared_from_this());
|
||||
}
|
||||
|
||||
void TileEditorOpenPacket::read(DataInputStream* dis) {
|
||||
this->editorType = dis->readByte();
|
||||
this->x = dis->readInt();
|
||||
this->y = dis->readInt();
|
||||
this->z = dis->readInt();
|
||||
}
|
||||
|
||||
void TileEditorOpenPacket::write(DataOutputStream* dos) {
|
||||
dos->writeByte(editorType);
|
||||
dos->writeInt(x);
|
||||
dos->writeInt(y);
|
||||
dos->writeInt(z);
|
||||
}
|
||||
|
||||
int TileEditorOpenPacket::getEstimatedSize() { return 1 + 3 * 4; }
|
||||
Reference in New Issue
Block a user