advanced-games-library
Version:
Advanced Gaming Library for React Native - Four Complete Games with iOS Compatibility Fixes
19 lines (15 loc) • 524 B
text/typescript
/**
* Simple Puzzle Game Exports
*/
// Game Classes
export { SimplePuzzleGame, SimplePuzzleGameFactory } from './SimplePuzzleGame';
export { SimplePuzzleScreen } from './SimplePuzzleScreen';
export { PuzzleTileComponent, PuzzleBoard } from './components';
// React Components - הקומפוננטה הראשית לשימוש חיצוני
export { SimplePuzzleGameComponent } from './SimplePuzzleGameComponent';
// Types
export type {
PuzzleGameConfig,
PuzzleTile,
PuzzleGameState
} from './SimplePuzzleGame';