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

12 lines
235 B
C#
Raw Normal View History

2024-08-02 16:50:16 +08:00
using VirtualNes.Core;
public class SoundBuffer : RingBuffer<byte>, ISoundDataBuffer
{
public SoundBuffer(int capacity) : base(capacity) { }
public void WriteByte(byte value)
{
Write(value);
}
}