TableturfBattleApp/TableturfBattleClient/src/Move.ts
2023-06-15 15:27:41 +10:00

14 lines
194 B
TypeScript

interface Move {
card: Card;
isPass: boolean;
isTimeout: boolean;
}
interface PlayMove extends Move {
isPass: false;
x: number;
y: number;
rotation: number;
isSpecialAttack: boolean;
}