prosperon/source/scripts/nogame.js
2023-06-09 03:51:06 +00:00

15 lines
252 B
JavaScript

function nogamegui()
{
GUI.column({
items: [
GUI.text_fn("NO GAME LOADED", {font_size: 6}),
GUI.text_fn("No game.js available.")
],
anchor: [0.5,0.5],
}).draw(Window.dimensions.scale(0.5));
}
register_gui(nogamegui);