/** * @sharpee/engine - Runtime engine for Sharpee IF Platform * * This package provides: * - Game engine with turn management * - Command executor for orchestrating flow * - Game state management */ export * from './types'; export * from './narrative'; export * from './story'; export * from './command-executor'; export * from './capability-dispatch-helper'; export * from './parser-interface'; export * from './shared-data-keys'; export * from './game-engine'; export { PluginRegistry, TurnPlugin, TurnPluginContext } from '@sharpee/plugins'; export { SceneEvaluationPlugin } from './scene-evaluation-plugin'; export * from './vocabulary-manager'; export * from './save-restore-service'; export * from './turn-event-processor'; export * from './platform-operations'; export * from './sound'; export { GameEngine } from './game-engine'; export { CommandExecutor, createCommandExecutor } from './command-executor'; //# sourceMappingURL=index.d.ts.map