From 8c1157c26e4b15c32fcc855ac0f106ec30683ed4 Mon Sep 17 00:00:00 2001 From: kziolkowski Date: Tue, 28 Oct 2025 12:04:41 +0100 Subject: [PATCH] :fire: removed indexed RaiseEvent-Call from EventRaiser --- scripts/CSharp/Low Code/Events/EventRaiser.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/scripts/CSharp/Low Code/Events/EventRaiser.cs b/scripts/CSharp/Low Code/Events/EventRaiser.cs index 2bebce3..07e419e 100644 --- a/scripts/CSharp/Low Code/Events/EventRaiser.cs +++ b/scripts/CSharp/Low Code/Events/EventRaiser.cs @@ -23,13 +23,4 @@ public partial class EventRaiser : Node eventRes.Raise(); } } - - /// - /// Raises at index. - /// - /// - public void RaiseEvent(int index) - { - _eventResources[index].Raise(); - } } \ No newline at end of file