Renderer/assets/Scenes/defaultLevel_0/scene.ts
austin 39717cdfb2
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
outside-of-context tsc compilation
2025-05-16 11:08:13 -04:00

17 lines
268 B
TypeScript

import { Scene } from "/Scripts/types/scene";
/**
* The main scene interface
*/
const TestScene1: Scene = {
persistentValues: undefined,
hooks: [],
signalHookMap: undefined,
sceneHooks: []
}
/**
* The scene to export
*/
export default TestScene1