17 lines
303 B
C++
17 lines
303 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Event.hpp"
|
||
|
|
|
||
|
|
namespace Bloom::Events
|
||
|
|
{
|
||
|
|
class StopTargetExecution: public Event
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static inline const std::string name = "StopTargetEvent";
|
||
|
|
|
||
|
|
std::string getName() const override {
|
||
|
|
return StopTargetExecution::name;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|