import { type GameState } from "../game/types"; const objectives = [ "Clear lower-tier debris to unlock heavier targets", "Meteorites and larger bodies only absorb after their mass gate", "Persist profile data in M3" ]; interface HudProps { gameState: GameState; } export function Hud({ gameState }: HudProps) { return ( ); }