2026-03-01 12:16:08 +08:00
|
|
|
#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:
|
2026-03-02 15:58:20 +07:00
|
|
|
static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new UpdateProgressPacket()); }
|
2026-03-01 12:16:08 +08:00
|
|
|
virtual int getId() { return 156; }
|
|
|
|
|
};
|