refactor: move events and service locator into core project
This commit is contained in:
15
L2BotCore/Domain/Events/Event.h
Normal file
15
L2BotCore/Domain/Events/Event.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace L2Bot::Domain::Events
|
||||
{
|
||||
class Event
|
||||
{
|
||||
public:
|
||||
virtual const std::string GetName() const = 0;
|
||||
|
||||
Event() = default;
|
||||
virtual ~Event() = default;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user