blob: 68cfc95f04862cba791e66945df2764c53b72110 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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"
import * as anticheese from "../anticheese.js"
export function start() {
Engine.radio.playMusic(MUSIC.HELL)
new HelloKittyBackground()
new HelloKitty()
}
export function update() {
anticheese.update()
}
export function draw() {
}
|