blob: aae493d531dd5e0ab727bbf85ccb308673ee9de4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _DELAYEDCALLUTILITYH_
#define _DELAYEDCALLUTILITYH_
#if ENABLE_SCRIPTING
#include "Runtime/Scripting/Backend/ScriptingTypes.h"
#include "Runtime/Scripting/ICallString.h"
class MonoBehaviour;
void InvokeDelayed (MonoBehaviour& behaviour, ICallString& monoMethodName, float time, float repeatRate);
void CancelInvoke (MonoBehaviour& behaviour, ICallString& monoMethodName);
void CancelInvoke (MonoBehaviour& behaviour);
bool IsInvoking (MonoBehaviour& behaviour, ICallString& monoMethodName);
bool IsInvoking (MonoBehaviour& behaviour);
#endif
#endif
|