diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-12-23 18:32:29 +0100 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-12-23 18:32:29 +0100 |
commit | a840990bdcabf45fb0d377478ba0ab27222434ae (patch) | |
tree | 030a6c3a6befce284733f5643d3972e3a1504bb2 /src/scenes |
initial commit
Diffstat (limited to 'src/scenes')
-rw-r--r-- | src/scenes/game.js | 13 | ||||
-rw-r--r-- | src/scenes/prequel.js | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/src/scenes/game.js b/src/scenes/game.js new file mode 100644 index 0000000..1640aa5 --- /dev/null +++ b/src/scenes/game.js @@ -0,0 +1,13 @@ +import { Engine } from "../engine.js" +import { MUSIC } from "../assets.js" + +export function start() { + Engine.playMusic(MUSIC.SOLGRYN) +} + + +export function update() { +} + +export function draw() { +} diff --git a/src/scenes/prequel.js b/src/scenes/prequel.js new file mode 100644 index 0000000..f24ef99 --- /dev/null +++ b/src/scenes/prequel.js @@ -0,0 +1,13 @@ +import { Engine } from "../engine.js" +import { MUSIC } from "../assets.js" + +export function start() { + Engine.playMusic(MUSIC.PREQUEL) +} + + +export function update() { +} + +export function draw() { +} |