2022-09-14 22:05:50 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "Command.hpp"
|
|
|
|
|
|
|
|
|
|
namespace Bloom::TargetController::Commands
|
|
|
|
|
{
|
|
|
|
|
class Resume: public Command
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static constexpr CommandType type = CommandType::RESUME;
|
2022-10-12 21:26:09 +01:00
|
|
|
static const inline std::string name = "Resume";
|
2022-09-14 22:05:50 +01:00
|
|
|
|
|
|
|
|
[[nodiscard]] CommandType getType() const override {
|
|
|
|
|
return Resume::type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[[nodiscard]] bool requiresDebugMode() const override {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|