mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-14 10:09:31 -07:00
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
14 lines
374 B
TypeScript
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()
|