Files
bridget/assets/ts/main.ts
Sped0n a60ff94c7c feat(customCursor.ts): add custom cursor functionality to improve user experience
feat(stage.ts): implement stage functionality to display images and handle mouse events
feat(stageNav.ts): add stage navigation functionality to navigate between images and close the stage
fix(main.ts): fix import paths for customCursor, stage, and stageNav modules
2023-10-29 14:52:43 +08:00

14 lines
374 B
TypeScript

import { initResources } from './resources'
import { initState } from './state'
import { initCustomCursor } from './desktop/customCursor'
import { initNav } from './nav'
import { initStage } from './desktop/stage'
import { initStageNav } from './desktop/stageNav'
initCustomCursor()
const ijs = initResources()
initState(ijs.length)
initStage(ijs)
initStageNav()
initNav()