AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Script/SoundBuffer.cs
2024-08-02 16:50:16 +08:00

12 lines
235 B
C#

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