21 lines
448 B
C#
21 lines
448 B
C#
using Godot;
|
|
using System.Reflection;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Rokojori
|
|
{
|
|
public abstract class AudioGeneratorStereo:AudioProcessor
|
|
{
|
|
public readonly AudioStreamOutput outputL;
|
|
public readonly AudioStreamOutput outputR;
|
|
|
|
public AudioGeneratorStereo( AudioGraph ag ): base( ag )
|
|
{
|
|
outputL = new AudioStreamOutput( this );
|
|
outputR = new AudioStreamOutput( this );
|
|
}
|
|
|
|
}
|
|
|
|
} |