8 lines
119 B
C#
8 lines
119 B
C#
|
namespace VirtualNes.Core
|
|||
|
{
|
|||
|
public interface ISoundDataBuffer
|
|||
|
{
|
|||
|
void WriteByte(byte value);
|
|||
|
}
|
|||
|
}
|