1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-09 20:27:45 +00:00
sapphire/src/servers/sapphire_zone/Event/EventHelper.h

16 lines
231 B
C
Raw Normal View History

2017-08-08 13:53:47 +02:00
#ifndef _EVENTHELPER_H
#define _EVENTHELPER_H
2017-12-17 11:48:07 +00:00
#include <cstdint>
2017-08-08 13:53:47 +02:00
#include <string>
2018-10-28 21:53:21 +01:00
namespace Core::Event
{
2017-08-08 13:53:47 +02:00
2018-10-28 21:53:21 +01:00
std::string getEventName( uint32_t eventId );
uint32_t mapEventActorToRealActor( uint32_t eventActorId );
2017-08-08 13:53:47 +02:00
}
2018-10-28 21:53:21 +01:00
2017-08-08 13:53:47 +02:00
#endif