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

8 lines
119 B
C#
Raw Normal View History

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