feat: remove outdated items and skills

This commit is contained in:
k0t9i
2023-01-25 14:55:38 +04:00
parent e0c7445ef7
commit 1d0dbf86c3
7 changed files with 122 additions and 33 deletions

View File

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