mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-05 03:43:40 +00:00
38 lines
1014 B
C++
38 lines
1014 B
C++
// This Header is auto generated by BDSLiteLoader Toolchain
|
|
#pragma once
|
|
#define AUTO_GENERATED
|
|
#include "../Global.h"
|
|
#include "Packet.hpp"
|
|
|
|
#define BEFORE_EXTRA
|
|
// Include Headers or Declare Types Here
|
|
enum SoftEnumUpdateType : char
|
|
{
|
|
Add = 0,
|
|
Remove = 1,
|
|
Set = 2,
|
|
};
|
|
#undef BEFORE_EXTRA
|
|
|
|
class UpdateSoftEnumPacket : public Packet {
|
|
|
|
#define AFTER_EXTRA
|
|
|
|
#undef AFTER_EXTRA
|
|
#ifndef DISABLE_CONSTRUCTOR_PREVENTION_UPDATESOFTENUMPACKET
|
|
public:
|
|
class UpdateSoftEnumPacket& operator=(class UpdateSoftEnumPacket const &) = delete;
|
|
UpdateSoftEnumPacket(class UpdateSoftEnumPacket const &) = delete;
|
|
UpdateSoftEnumPacket() = delete;
|
|
#endif
|
|
|
|
public:
|
|
/*0*/ virtual ~UpdateSoftEnumPacket();
|
|
/*1*/ virtual enum MinecraftPacketIds getId() const;
|
|
/*2*/ virtual std::string getName() const;
|
|
/*3*/ virtual void write(class BinaryStream &) const;
|
|
/*4*/ virtual enum StreamReadResult read(class ReadOnlyBinaryStream &);
|
|
#ifdef ENABLE_VIRTUAL_FAKESYMBOL_UPDATESOFTENUMPACKET
|
|
#endif
|
|
|
|
}; |