summaryrefslogtreecommitdiff
path: root/src/scenes/hello_kitty.js
blob: f7b5c8c3b1d28bc5167b3a1cf120312d02727253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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() {
}