LiteLoaderBDS-1.16.40/LiteLoader/Header/MC/CommandSoftEnumRegistry.hpp

34 lines
1005 B
C++

// This Header is auto generated by BDSLiteLoader Toolchain
#pragma once
#define AUTO_GENERATED
#include "../Global.h"
#define BEFORE_EXTRA
// Include Headers or Declare Types Here
#include "UpdateSoftEnumPacket.hpp"
#undef BEFORE_EXTRA
class CommandSoftEnumRegistry {
#define AFTER_EXTRA
// Add Member There
class CommandRegistry* registry;
public:
CommandSoftEnumRegistry(class CommandRegistry *reg){
this->registry = reg;
};
#define DISABLE_CONSTRUCTOR_PREVENTION_COMMANDSOFTENUMREGISTRY
#undef AFTER_EXTRA
#ifndef DISABLE_CONSTRUCTOR_PREVENTION_COMMANDSOFTENUMREGISTRY
public:
class CommandSoftEnumRegistry& operator=(class CommandSoftEnumRegistry const &) = delete;
CommandSoftEnumRegistry(class CommandSoftEnumRegistry const &) = delete;
CommandSoftEnumRegistry() = delete;
#endif
public:
#ifdef ENABLE_VIRTUAL_FAKESYMBOL_COMMANDSOFTENUMREGISTRY
#endif
MCAPI void updateSoftEnum(enum SoftEnumUpdateType, std::string const &, std::vector<std::string>);
};