20 lines
325 B
C++
20 lines
325 B
C++
#pragma once
|
|
|
|
#include "Event.h"
|
|
|
|
namespace L2Bot::Domain::Events
|
|
{
|
|
class HeroDeletedEvent : public Event
|
|
{
|
|
public:
|
|
static constexpr const char* name = "heroDeleted";
|
|
|
|
const std::string GetName() const
|
|
{
|
|
return std::string(name);
|
|
}
|
|
|
|
HeroDeletedEvent() = default;
|
|
virtual ~HeroDeletedEvent() = default;
|
|
};
|
|
} |