KaraokePC/CdgLib/cdgPacket.cs
2016-02-28 16:31:35 -05:00

11 lines
289 B
C#

namespace CdgLib
{
public class CdgPacket
{
public byte[] Command = new byte[1];
public byte[] Data = new byte[16];
public byte[] Instruction = new byte[1];
public byte[] ParityP = new byte[4];
public byte[] ParityQ = new byte[2];
}
}