first commit

This commit is contained in:
murdle
2026-03-01 02:38:58 +02:00
commit 19250b9db4
19111 changed files with 4358159 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
#pragma once
using namespace std;
#include "Packet.h"
// 4J Added packet to update clients on the time for the host to finish doing something
class UpdateProgressPacket : public Packet, public enable_shared_from_this<UpdateProgressPacket>
{
public:
int m_percentage;
UpdateProgressPacket();
UpdateProgressPacket(int percentage);
virtual void read(DataInputStream *dis);
virtual void write(DataOutputStream *dos);
virtual void handle(PacketListener *listener);
virtual int getEstimatedSize();
public:
static shared_ptr<Packet> create() { return shared_ptr<Packet>(new UpdateProgressPacket()); }
virtual int getId() { return 156; }
};