17 lines
268 B
TypeScript
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
|