rj-action-library/Runtime/Audio/AudioGraph/Instruments/Instrument.cs

19 lines
328 B
C#
Raw Normal View History

2025-01-03 12:09:23 +00:00
using Godot;
using System.Reflection;
using System.Collections.Generic;
using System.Text;
namespace Rokojori
{
public class Instrument:AudioProcessor
{
public Instrument( AudioGraph ag ):base( ag ){}
List<Voice> _voices = new List<Voice>();
2025-03-13 16:19:28 +00:00
protected override void _ProcessAudio()
2025-01-03 12:09:23 +00:00
{
}
}
}