mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-26 04:34:41 +00:00
* Remove stdafx.h and some <unordered_set> includes * Update Minecraft Server Defines and remove more unused folders/files * Unbloat stdafx.h from Minecraft.World
21 lines
349 B
C++
21 lines
349 B
C++
#include "InputOutputStream.h"
|
|
#include "PacketListener.h"
|
|
#include "GetInfoPacket.h"
|
|
|
|
void GetInfoPacket::read(DataInputStream *dis)
|
|
{
|
|
}
|
|
|
|
void GetInfoPacket::write(DataOutputStream *dos)
|
|
{
|
|
}
|
|
|
|
void GetInfoPacket::handle(PacketListener *listener)
|
|
{
|
|
listener->handleGetInfo(shared_from_this());
|
|
}
|
|
|
|
int GetInfoPacket::getEstimatedSize()
|
|
{
|
|
return 0;
|
|
} |