1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-19 03:57:14 +01:00
SqMod/source/Event/Shared.hpp
2015-11-01 05:48:01 +02:00

42 lines
1.2 KiB
C++

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