mirror of
https://github.com/AndrioCelos/TableturfBattleApp.git
synced 2026-04-19 07:07:30 -05:00
11 lines
216 B
C#
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;
|
|
}
|