From 7e34b4addcf2c43cf1428208cc43799c0f9e1394 Mon Sep 17 00:00:00 2001 From: Raven Date: Sat, 14 Oct 2023 17:05:18 -0700 Subject: [PATCH] Timer: Fix type error in SimpleTimer. Signed-off-by: Raven --- SimpleTimer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimpleTimer.cs b/SimpleTimer.cs index 48b2729..c6eab2b 100644 --- a/SimpleTimer.cs +++ b/SimpleTimer.cs @@ -39,7 +39,7 @@ public void Start() StaticCoroutineHandler.StartCoroutineStatic(Timer()); } - private void Execute(Action action, float value) { + private void Execute(UnityEvent action, float value) { try { action?.Invoke(value); } catch {