chovy-sign/CHOVY-SIGN/POPS/IsoIndex.cs

15 lines
270 B
C#

namespace Popstation
{
public class IsoIndex
{
public uint Offset { get; set; }
public uint Length { get; set; }
public uint[] Dummy { get; set; }
public IsoIndex()
{
Dummy = new uint[6];
}
}
}