fix: fix item creation

This commit is contained in:
k0t9i
2023-02-01 22:29:36 +04:00
parent 546b371dd6
commit 6cbf61d67f
6 changed files with 39 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
#pragma once
#include "Event.h"
class OnEndItemListEvent : public Event
{
public:
static constexpr const char* name = "onEndItemList";
const std::string GetName() const
{
return std::string(name);
}
OnEndItemListEvent() = default;
virtual ~OnEndItemListEvent() = default;
};