TableturfBattleApp/TableturfBattleServer/SingleGameData.cs
2023-10-10 09:31:50 +11:00

22 lines
440 B
C#

using Newtonsoft.Json;
namespace TableturfBattleServer;
public class SingleGameData {
public int SpecialPoints { get; set; }
public int TotalSpecialPoints { get; set; }
public int Passes { get; set; }
[JsonIgnore]
internal bool won = false;
[JsonIgnore]
internal List<ReplayTurn> turns = new(12);
[JsonIgnore]
internal Deck? Deck;
[JsonIgnore]
internal int[]? initialDrawOrder;
[JsonIgnore]
internal int[]? drawOrder;
}