TableturfBattleApp/TableturfBattleServer/ReplayTurn.cs
2023-06-15 15:27:41 +10:00

11 lines
216 B
C#

namespace TableturfBattleServer;
public struct ReplayTurn {
public int CardNumber;
public int X;
public int Y;
public int Rotation;
public bool IsPass;
public bool IsSpecialAttack;
public bool IsTimeout;
}