Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | /**
* Combat HUD Components Index
*
* Exports all HUD components for the combat screen.
* Following gaming UI best practices:
* - TopHUD: 70px/55px - Round info, timer, menu
* - BottomHUD: 120px/100px - Technique bar, controls
* - LeftHUD: 14%/18% - Player 1 stats
* - RightHUD: 14%/18% - Player 2/AI stats
* - Arena: ~72% center
*
* @korean 전투화면 HUD 컴포넌트 인덱스
*/
export { CombatTopHUD } from "./CombatTopHUD";
export type { CombatTopHUDProps } from "./CombatTopHUD";
export { CombatBottomHUD } from "./CombatBottomHUD";
export type { CombatBottomHUDProps } from "./CombatBottomHUD";
export { CombatLeftHUD } from "./CombatLeftHUD";
export type { CombatLeftHUDProps } from "./CombatLeftHUD";
export { CombatRightHUD } from "./CombatRightHUD";
export type { CombatRightHUDProps } from "./CombatRightHUD";
|