AxibugEmuOnline/AxibugEmuOnline.Client.PSVita/Assets/Script/SoundBuffer.cs
2024-12-08 21:50:52 +08:00

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);
}
}