the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 22 lines 369 B view raw
1#include "stdafx.h" 2#include "InputOutputStream.h" 3#include "PacketListener.h" 4#include "GetInfoPacket.h" 5 6void GetInfoPacket::read(DataInputStream *dis) 7{ 8} 9 10void GetInfoPacket::write(DataOutputStream *dos) 11{ 12} 13 14void GetInfoPacket::handle(PacketListener *listener) 15{ 16 listener->handleGetInfo(shared_from_this()); 17} 18 19int GetInfoPacket::getEstimatedSize() 20{ 21 return 0; 22}