2026-03-01 12:16:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
#include "Packet.h"
|
|
|
|
|
|
|
|
|
|
class TextureAndGeometryChangePacket : public Packet, public enable_shared_from_this<TextureAndGeometryChangePacket>
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
int id;
|
|
|
|
|
wstring path;
|
|
|
|
|
DWORD dwSkinID;
|
|
|
|
|
|
|
|
|
|
TextureAndGeometryChangePacket();
|
2026-03-02 15:58:20 +07:00
|
|
|
TextureAndGeometryChangePacket(std::shared_ptr<Entity> e, const wstring &path);
|
2026-03-01 12:16:08 +08:00
|
|
|
|
|
|
|
|
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 TextureAndGeometryChangePacket()); }
|
2026-03-01 12:16:08 +08:00
|
|
|
virtual int getId() { return 161; }
|
|
|
|
|
};
|