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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | /**
* Barrel exports for shared/three module
*
* Only re-exports symbols that are actually consumed through this barrel.
* Components used via direct imports (e.g., from "./effects/DamageNumbers")
* are NOT re-exported here to avoid dead code.
*
* @module components/shared/three
* @korean 공유3D컴포넌트
*/
// UI components consumed through barrel by components/index.ts and screens
export { KoreanButton } from "./ui/KoreanButton";
export type { KoreanButtonProps } from "./ui/KoreanButton";
export { KoreanPanel } from "./ui/KoreanPanel";
export type { KoreanPanelProps } from "./ui/KoreanPanel";
export { KoreanText } from "./ui/KoreanText";
export type { KoreanTextProps } from "./ui/KoreanText";
export { MenuList } from "./ui/MenuList";
export type { MenuItem, MenuListProps } from "./ui/MenuList";
export { ArchetypeCard } from "./ui/ArchetypeCard";
export type { ArchetypeCardProps } from "./ui/ArchetypeCard";
export { ProgressBar } from "./ui/ProgressBar";
export type { ProgressBarProps, ProgressBarType } from "./ui/ProgressBar";
// VitalPoint types consumed by TrainingScreen3D
export type { BodyRegionFilter } from "./ui/VitalPointOverlayControlsHtml";
// Effects consumed through barrel by TrainingScreen3D
export { default as VitalPointMarkers3D } from "./effects/VitalPointMarkers3D";
export type { VitalPointMarkers3DProps } from "./effects/VitalPointMarkers3D";
// Models consumed through barrel by TrainingScreen3D
export { Player3DWithTransitions } from "./models/Player3DWithTransitions";
export type { Player3DWithTransitionsProps } from "./models/Player3DWithTransitions";
// Scene consumed through barrel by ControlsScreen3D, IntroScreen3D, PhilosophyScreen3D
export { BackgroundScene3D } from "./scene/BackgroundScene3D";
export type { BackgroundScene3DProps } from "./scene/BackgroundScene3D";
|