This commit is contained in:
Nav
2022-01-11 21:12:25 +00:00
parent 023b655145
commit d462358b1e
21 changed files with 128 additions and 23 deletions

View File

@@ -65,6 +65,15 @@ namespace Bloom::Events
static constexpr EventType type = EventType::GENERIC;
static inline const std::string name = "GenericEvent";
Event() = default;
virtual ~Event() = default;
Event(const Event& other) = default;
Event(Event&& other) = default;
Event& operator = (const Event& other) = default;
Event& operator = (Event&& other) = default;
[[nodiscard]] virtual std::string getName() const {
return Event::name;
}