AxibugEmuOnline/AxibugEmuOnline.Client/Assets/VirtualNes.Core/CoreLibs/ISoundDataBuffer.cs

8 lines
126 B
C#
Raw Normal View History

2024-08-16 10:20:00 +08:00
namespace VirtualNes.Core
2024-08-02 16:50:16 +08:00
{
public interface ISoundDataBuffer
{
void WriteByte(byte value);
}
}