AxibugEmuOnline/AxibugEmuOnline.Client.Transplant/Assets/Script/AppMain/SoundBuffer.cs

12 lines
224 B
C#

using VirtualNes.Core;
public class SoundBuffer : RingBuffer<byte>, ISoundDataBuffer
{
public SoundBuffer(int capacity) : base(capacity) { }
public void WriteByte(byte value)
{
Write(value);
}
}