Renderer/assets/Scenes/testscene1/scene.ts
austin 0d80214dc8
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
testing work
2024-08-19 13:37:36 -04:00

17 lines
254 B
TypeScript

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