import { Player } from "./Player" import { CourtObject } from "./CourtObjects" import { Action } from "./Action" export interface Tactic { id: number name: string content: TacticContent } export interface TacticContent { players: Player[] objects: CourtObject[] actions: Action[] }