Add project files.
This commit is contained in:
18
L2BotDll/Events/SpoiledEvent.h
Normal file
18
L2BotDll/Events/SpoiledEvent.h
Normal file
@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include "Event.h"
|
||||
|
||||
class SpoiledEvent : public Event
|
||||
{
|
||||
public:
|
||||
static constexpr const char* name = "spoiled";
|
||||
|
||||
const std::string GetName() const
|
||||
{
|
||||
return std::string(name);
|
||||
}
|
||||
|
||||
SpoiledEvent() = default;
|
||||
virtual ~SpoiledEvent() = default;
|
||||
};
|
Reference in New Issue
Block a user