7 lines
92 B
JavaScript
7 lines
92 B
JavaScript
module = {
|
|
render() {
|
|
Text.draw(0, 0, "Hello World");
|
|
SpriteBatch.flush();
|
|
}
|
|
};
|