TigerEmu/Game/Figuredata/Figuredata.cs

7 lines
175 B
C#
Raw Permalink Normal View History

namespace Tiger.Game.Figuredata;
public class Figuredata
{
public List<Palette> Palettes { get; set; } = new();
public List<SetType> SetTypes { get; set; } = new();
}