mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-06-04 09:54:34 +00:00
removed git history
This commit is contained in:
24
Minecraft.World/ClientCommandPacket.h
Normal file
24
Minecraft.World/ClientCommandPacket.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "Packet.h"
|
||||
|
||||
class ClientCommandPacket : public Packet, public enable_shared_from_this<ClientCommandPacket>
|
||||
{
|
||||
public:
|
||||
static const int LOGIN_COMPLETE = 0;
|
||||
static const int PERFORM_RESPAWN = 1;
|
||||
|
||||
int action;
|
||||
|
||||
ClientCommandPacket();
|
||||
ClientCommandPacket(int action);
|
||||
|
||||
void read(DataInputStream *dis);
|
||||
void write(DataOutputStream *dos);
|
||||
void handle(PacketListener *listener);
|
||||
int getEstimatedSize();
|
||||
|
||||
public:
|
||||
static shared_ptr<Packet> create() { return std::make_shared<ClientCommandPacket>(); }
|
||||
virtual int getId() { return 205; }
|
||||
};
|
||||
Reference in New Issue
Block a user