10 lines
249 B
C#
10 lines
249 B
C#
|
namespace Tiger.Game.Figuredata;
|
||
|
|
||
|
public class Part
|
||
|
{
|
||
|
public bool Colorable { get; set; }
|
||
|
public int ColorIndex { get; set; }
|
||
|
public uint Id { get; set; }
|
||
|
public int Index { get; set; }
|
||
|
public string Type { get; set; } = null!;
|
||
|
}
|