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 | /**
* Mobile Touch Controls
*
* Comprehensive mobile touch control UI system for Black Trigram
* Provides virtual controls, gesture recognition, and haptic feedback
*
* @module components/mobile
* @category Mobile Controls
* @korean 모바일 컨트롤
*/
export { VirtualDPad } from './VirtualDPad';
export type { VirtualDPadProps, Direction, DPadEventType } from './VirtualDPad';
export { ActionButtons } from './ActionButtons';
export type { ActionButtonsProps, ButtonEventType } from './ActionButtons';
export { StanceWheel } from './StanceWheel';
export type { StanceWheelProps } from './StanceWheel';
export { GestureRecognizer } from './GestureRecognizer';
export type { GestureRecognizerProps } from './GestureRecognizer';
|