/** * 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';