import { type GameState } from "../game/types"; const objectives = [ "Reach mass 40 to stabilize your pull", "Keep sweeping the field to chain dust pickups", "Persist profile data in M3" ]; interface HudProps { gameState: GameState; } export function Hud({ gameState }: HudProps) { return ( ); }