All files / blacktrigram/src/components/combat index.ts

0% Statements 0/6
100% Branches 1/1
100% Functions 1/1
0% Lines 0/6

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 system components for Korean martial arts
 */
 
/**
 * @module components/combat
 * @category Combat System
 */
 
// Main combat screen
export { CombatScreen, default as CombatScreenDefault } from "./CombatScreen";
 
// Combat sub-components
export * from "./components";
 
// Individual component exports
export { CombatControls } from "./components/CombatControls";
export { CombatHUD } from "./components/CombatHUD";
 
// Default exports for convenience
export { default as CombatControlsDefault } from "./components/CombatControls";
export { default as CombatHUDDefault } from "./components/CombatHUD";
 
// Re-export component prop types
export type { CombatScreenProps } from "./CombatScreen";