You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 年之前
1234567891011
  1. menu = Class{}
  2. local M = {}
  3. function menu.update(dt)
  4. end
  5. function menu.draw(dt)
  6. menu:butt(buttons, WINDOW_WIDTH, WINDOW_HEIGHT, WINDOW_WIDTH/2, WINDOW_HEIGHT/2, 40, WINDOW_WIDTH/3)
  7. end
  8. return menu