prosperon/scripts/nogame.js

8 lines
171 B
JavaScript
Raw Normal View History

2024-10-29 12:41:17 -05:00
var layout = use("layout.js");
2024-09-26 11:36:09 -05:00
this.hud = function () {
2024-10-17 17:23:33 -05:00
layout.draw_commands(clay.draw([], _ => {
clay.text("No game yet! Make game.js to get started!");
}));
2024-09-26 11:36:09 -05:00
};