Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
790 B · 41 lines
C++
at master
123456789101112131415161718192021222324252627282930313233343536373839404142#include "stdafx.h"#include <iostream>#include "InputOutputStream.h"#include "PacketListener.h"#include "TakeItemEntityPacket.h"
TakeItemEntityPacket::TakeItemEntityPacket() { itemId = -1; playerId = -1;}
TakeItemEntityPacket::TakeItemEntityPacket(int itemId, int playerId){ this->itemId = itemId; this->playerId = playerId;}
void TakeItemEntityPacket::read(DataInputStream *dis) //throws IOException { itemId = dis->readInt(); playerId = dis->readInt();}
void TakeItemEntityPacket::write(DataOutputStream *dos) //throws IOException { dos->writeInt(itemId); dos->writeInt(playerId);}
void TakeItemEntityPacket::handle(PacketListener *listener) { listener->handleTakeItemEntity(shared_from_this());}
int TakeItemEntityPacket::getEstimatedSize(){ return 8;}