TigerEmu/Game/Figuredata/Palette.cs

7 lines
143 B
C#
Raw Permalink Normal View History

namespace Tiger.Game.Figuredata;
public class Palette
{
public int Id { get; set; }
public List<Color> Colors { get; set; } = new();
}