mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-04 19:33:40 +00:00
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
// This Header is auto generated by BDSLiteLoader Toolchain
|
|
#pragma once
|
|
#define AUTO_GENERATED
|
|
#include "../Global.h"
|
|
|
|
#define BEFORE_EXTRA
|
|
|
|
#undef BEFORE_EXTRA
|
|
|
|
class Command {
|
|
|
|
#define AFTER_EXTRA
|
|
|
|
#undef AFTER_EXTRA
|
|
#ifndef DISABLE_CONSTRUCTOR_PREVENTION_COMMAND
|
|
public:
|
|
class Command& operator=(class Command const &) = delete;
|
|
Command(class Command const &) = delete;
|
|
Command() = delete;
|
|
#endif
|
|
|
|
public:
|
|
/*0*/ virtual ~Command();
|
|
/*1*/ virtual void execute(class CommandOrigin const &, class CommandOutput &) const = 0;
|
|
#ifdef ENABLE_VIRTUAL_FAKESYMBOL_COMMAND
|
|
#endif
|
|
MCAPI void run(class CommandOrigin const &, class CommandOutput &) const;
|
|
MCAPI static std::string const WILDCARD_TOKEN;
|
|
MCAPI static bool validRange(int, int, int, class CommandOutput &);
|
|
|
|
//protected:
|
|
MCAPI void sendTelemetry(class CommandOrigin const &, class CommandOutput &) const;
|
|
MCAPI bool shouldSendTelemetry(class CommandOrigin const &) const;
|
|
MCAPI static bool isTemplateLockedAction(class CommandOrigin const &);
|
|
MCAPI static bool isWildcard(class CommandSelectorBase const &);
|
|
|
|
protected:
|
|
|
|
}; |