import type { FunctionDocumentationEntry } from '../types'; import { CAMP_TRAVEL_HOME_FUNCTION } from './campTravelHomeScene'; import { CONTINUE_ADVENTURE_FUNCTION } from './storyContinueAdventure'; import { STORY_OPENING_CAMP_DIALOGUE_FUNCTION } from './storyOpeningCampDialogue'; export const FLOW_FUNCTION_DOCUMENTATION: FunctionDocumentationEntry[] = [ CONTINUE_ADVENTURE_FUNCTION, CAMP_TRAVEL_HOME_FUNCTION, STORY_OPENING_CAMP_DIALOGUE_FUNCTION, ];