hook.Call might be deferred or not now (was always deferred)

This commit is contained in:
2022-05-16 16:22:52 +03:00
parent 06587212b2
commit bc55cacffc
3 changed files with 11 additions and 5 deletions

2
hook.h
View File

@ -21,7 +21,7 @@ protected:
public:
Dictionary GetTable();
void Add(String event, String uid, Callable function);
void Call(String event, Array args);
void Call(String event, Array args, bool defer);
void Remove(String event, String uid);
Hook();
};