diff options
Diffstat (limited to 'src/scenes')
-rw-r--r-- | src/scenes/hello_kitty.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/scenes/hello_kitty.js b/src/scenes/hello_kitty.js index f7b5c8c..68cfc95 100644 --- a/src/scenes/hello_kitty.js +++ b/src/scenes/hello_kitty.js @@ -2,6 +2,7 @@ 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) @@ -11,6 +12,7 @@ export function start() { export function update() { + anticheese.update() } export function draw() { |