1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-09 12:17:45 +00:00
sapphire/src/servers/sapphire_zone/Event/EventHelper.h
2018-10-28 21:53:21 +01:00

15 lines
231 B
C++

#ifndef _EVENTHELPER_H
#define _EVENTHELPER_H
#include <cstdint>
#include <string>
namespace Core::Event
{
std::string getEventName( uint32_t eventId );
uint32_t mapEventActorToRealActor( uint32_t eventActorId );
}
#endif