mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-03 04:23:39 +00:00
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
// This Header is auto generated by BDSLiteLoader Toolchain
|
|
#pragma once
|
|
#define AUTO_GENERATED
|
|
#include "llapi/Global.h"
|
|
#include "Packet.hpp"
|
|
|
|
#define BEFORE_EXTRA
|
|
|
|
#undef BEFORE_EXTRA
|
|
|
|
class SetDisplayObjectivePacket : public Packet {
|
|
|
|
#define AFTER_EXTRA
|
|
public:
|
|
std::string mDisplaySlotName;
|
|
std::string mObjectiveName;
|
|
std::string mObjectiveDisplayName;
|
|
std::string mCriteriaName;
|
|
ObjectiveSortOrder mSortOrder;
|
|
#undef AFTER_EXTRA
|
|
#ifndef DISABLE_CONSTRUCTOR_PREVENTION_SETDISPLAYOBJECTIVEPACKET
|
|
public:
|
|
class SetDisplayObjectivePacket& operator=(class SetDisplayObjectivePacket const &) = delete;
|
|
SetDisplayObjectivePacket(class SetDisplayObjectivePacket const &) = delete;
|
|
SetDisplayObjectivePacket() = delete;
|
|
#endif
|
|
|
|
public:
|
|
/*0*/ virtual ~SetDisplayObjectivePacket();
|
|
/*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_SETDISPLAYOBJECTIVEPACKET
|
|
#endif
|
|
MCAPI SetDisplayObjectivePacket(std::string const &, std::string const &, std::string const &, std::string const &, enum ObjectiveSortOrder);
|
|
|
|
}; |