presentationState.ts 443 B

1234567891011121314
  1. import { EMPTY_HUD_PRESENTATION_STATE, type HudPresentationState } from './hudPresentationState'
  2. import { EMPTY_MAP_PRESENTATION_STATE, type MapPresentationState } from './mapPresentationState'
  3. export interface GamePresentationState {
  4. map: MapPresentationState
  5. hud: HudPresentationState
  6. }
  7. export const EMPTY_GAME_PRESENTATION_STATE: GamePresentationState = {
  8. map: EMPTY_MAP_PRESENTATION_STATE,
  9. hud: EMPTY_HUD_PRESENTATION_STATE,
  10. }