Game State (Pico-8)

State machine for your game - Intro to a Main Menu / advanced

see also

function draw_menu()
  print("press ❎ to start", 30, 60, 6)
end

function init_menu()
    _update = update_menu
    _draw = draw_menu
end
Written on September 3, 2025, Last update on
game-engine pico8 lua