22 lines
472 B
C++
22 lines
472 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Command.hpp"
|
||
|
|
|
||
|
|
namespace Bloom::TargetController::Commands
|
||
|
|
{
|
||
|
|
class Resume: public Command
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static constexpr CommandType type = CommandType::RESUME;
|
||
|
|
static inline const std::string name = "Resume";
|
||
|
|
|
||
|
|
[[nodiscard]] CommandType getType() const override {
|
||
|
|
return Resume::type;
|
||
|
|
}
|
||
|
|
|
||
|
|
[[nodiscard]] bool requiresDebugMode() const override {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|