diff options
Diffstat (limited to 'src/scenes/hello_kitty.js')
-rw-r--r-- | src/scenes/hello_kitty.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/scenes/hello_kitty.js b/src/scenes/hello_kitty.js new file mode 100644 index 0000000..f7b5c8c --- /dev/null +++ b/src/scenes/hello_kitty.js @@ -0,0 +1,17 @@ +import { Engine } from "../engine.js" +import { MUSIC } from "../assets.js" +import { HelloKittyBackground } from "../entities/hello_kitty_background.js" +import { HelloKitty } from "../entities/hello_kitty.js" + +export function start() { + Engine.radio.playMusic(MUSIC.HELL) + new HelloKittyBackground() + new HelloKitty() +} + + +export function update() { +} + +export function draw() { +} |