mirror of
https://github.com/AndrioCelos/TableturfBattleApp.git
synced 2026-03-22 09:54:19 -05:00
14 lines
194 B
TypeScript
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;
|
|
}
|