21 lines
283 B
Lua
21 lines
283 B
Lua
function _init()
|
|
cartdata("annabunches_a_pleasant_stroll_e25d3e5c")
|
|
|
|
init_sound""
|
|
init_world""
|
|
init_player""
|
|
init_debug""
|
|
end
|
|
|
|
|
|
function _update()
|
|
handle_input""
|
|
end
|
|
|
|
function _draw()
|
|
cls""
|
|
draw_world(player_x, player_y)
|
|
draw_player""
|
|
debug_print""
|
|
end
|