TigerEmu/Game/Figuredata/Part.cs

10 lines
249 B
C#
Raw Normal View History

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!;
}