15 lines
443 B
TypeScript
15 lines
443 B
TypeScript
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,
|
|
}
|
|
|
|
|