game.lua 139 B

12345678910
  1. function init()
  2. -- Set the title of the main window
  3. Window.set_title("Hello world!")
  4. end
  5. function frame(dt)
  6. end
  7. function shutdown()
  8. end