@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
15 lines (11 loc) • 412 B
text/typescript
import type { ScreenBattleViewConfig } from './ScreenBattleViewConfig';
import type { ScreenRaceViewConfig } from './ScreenRaceViewConfig';
export interface UpdateRaceViewInput {
view: 'Race';
config: ScreenRaceViewConfig;
}
export interface UpdateBattleViewInput {
view: 'Battle';
config: ScreenBattleViewConfig;
}
export type ScreenUpdateGameViewInput = UpdateRaceViewInput | UpdateBattleViewInput;