12 lines
190 B
Text
12 lines
190 B
Text
|
|
import "graphics" for Canvas, Color
|
||
|
|
|
||
|
|
class Game {
|
||
|
|
static init() {
|
||
|
|
Canvas.print("Goodbye, World!", 10, 10, Color.white)
|
||
|
|
}
|
||
|
|
|
||
|
|
static update() {}
|
||
|
|
|
||
|
|
static draw(alpha) {}
|
||
|
|
}
|