Chessistics/chessistics-engine/Model/CampaignDef.cs

10 lines
264 B
C#
Raw Normal View History

namespace Chessistics.Engine.Model;
public class CampaignDef
{
public string Name { get; init; } = "";
public int InitialWidth { get; init; }
public int InitialHeight { get; init; }
public IReadOnlyList<MissionDef> Missions { get; init; } = [];
}