GBA.Unity/Assets/emulator/Provider.cs

10 lines
259 B
C#
Raw Normal View History

2024-08-16 11:06:40 +08:00
namespace OptimeGBA
{
2024-08-16 14:51:15 +08:00
public delegate void AudioCallback(float[] stereo16BitInterleavedData);
2024-08-16 11:06:40 +08:00
public abstract class Provider {
public bool OutputAudio = true;
public AudioCallback AudioCallback;
public string SavPath;
}
}