UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

10 lines (9 loc) 259 B
import type { Game, GameKartState } from '../Game'; export interface BattleKartState extends GameKartState { lives: number; } export interface Battle extends Game { type: 'Battle'; lives: number; kartsState: Record<string, BattleKartState>; }