import React from 'react' interface HUDProps { className?: string style?: React.CSSProperties } export function HUD({ className, style }: HUDProps) { // HUD removed - inventory GUI doesn't need health/food/armor/XP/air display return null }