AxibugEmuOnline/AxibugEmuOnline.Client.Switch/Assets/VirtualNes.Core/CoreLibs/ISoundDataBuffer.cs
2025-08-20 10:25:32 +08:00

8 lines
119 B
C#

namespace VirtualNes.Core
{
public interface ISoundDataBuffer
{
void WriteByte(byte value);
}
}