1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-09-18 18:27:18 +02:00

Implement the custom event functions.

This commit is contained in:
Sandu Liviu Catalin
2016-05-23 03:51:44 +03:00
parent fdd06e8c2e
commit 86297882d5
3 changed files with 18 additions and 0 deletions

View File

@@ -11,6 +11,12 @@ namespace SqMod {
// ------------------------------------------------------------------------------------------------
extern void ProcessRoutines();
// ------------------------------------------------------------------------------------------------
void Core::EmitCustomEvent(Int32 group, Int32 header, Object & payload)
{
Emit(mOnCustomEvent, group, header, payload);
}
// ------------------------------------------------------------------------------------------------
void Core::EmitBlipCreated(Int32 blip, Int32 header, Object & payload)
{