L2Bot2.0/L2BotCore/Domain/Events/Event.h

15 lines
198 B
C++

#pragma once
#include <string>
namespace L2Bot::Domain::Events
{
class Event
{
public:
virtual const std::string GetName() const = 0;
Event() = default;
virtual ~Event() = default;
};
}