| 1234567891011121314 |
- import { EMPTY_HUD_PRESENTATION_STATE, type HudPresentationState } from './hudPresentationState'
- import { EMPTY_MAP_PRESENTATION_STATE, type MapPresentationState } from './mapPresentationState'
- export interface GamePresentationState {
- map: MapPresentationState
- hud: HudPresentationState
- }
- export const EMPTY_GAME_PRESENTATION_STATE: GamePresentationState = {
- map: EMPTY_MAP_PRESENTATION_STATE,
- hud: EMPTY_HUD_PRESENTATION_STATE,
- }
|