a_pleasant_stroll/main.lua

26 lines
303 B
Lua
Raw Normal View History

2019-12-04 23:48:04 +00:00
function _init()
pal(11, 139, 1)
2019-12-11 07:13:11 +00:00
-- module inits
init_savegame""
init_sound""
init_world""
init_player""
init_debug""
load_game""
2019-12-04 23:48:04 +00:00
end
function _update()
handle_input""
2019-12-04 23:48:04 +00:00
end
function _draw()
cls""
draw_world(player_x, player_y)
draw_player""
debug_print""
2019-12-04 23:48:04 +00:00
end