using Godot; using System.Reflection; using System.Collections.Generic; using System.Text; using System; namespace Rokojori { public abstract class AudioEvent : AudioConnection { protected List _events = new List(); public AudioEvent( AudioProcessor p, bool isInput ):base( p, isInput ) { } public override void Clear() { _events.Clear(); } } }