1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 16:57:16 +01:00
SqMod/source/Event/Shared.hpp

37 lines
1.1 KiB
C++

#ifndef _SQMOD_EVENT_SHARED_HPP_
#define _SQMOD_EVENT_SHARED_HPP_
// ------------------------------------------------------------------------------------------------
#include "Signal.hpp"
// ------------------------------------------------------------------------------------------------
namespace SqMod {
/* ------------------------------------------------------------------------------------------------
* ...
*/
const SQChar * GetEventName(SQInt32 type) noexcept;
/* ------------------------------------------------------------------------------------------------
* ...
*/
bool IsEntityEvent(SQInt32 type) noexcept;
/* ------------------------------------------------------------------------------------------------
* ...
*/
bool IsCreateEvent(SQInt32 type) noexcept;
/* ------------------------------------------------------------------------------------------------
* ...
*/
bool IsDestroyEvent(SQInt32 type) noexcept;
/* ------------------------------------------------------------------------------------------------
* ...
*/
bool IsCustomEvent(SQInt32 type) noexcept;
} // Namespace:: SqMod
#endif // _SQMOD_EVENT_SHARED_HPP_