menu.form 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. form menu
  2. {
  3. theme = res/menu.theme
  4. style = background
  5. alignment = ALIGN_VCENTER_HCENTER
  6. size = 1000, 150
  7. label congrats
  8. {
  9. style = title
  10. textAlignment = ALIGN_TOP_HCENTER
  11. autoWidth = true
  12. height = 50
  13. text = Please choose an option...
  14. }
  15. container buttons
  16. {
  17. style = background
  18. alignment = ALIGN_BOTTOM_HCENTER
  19. size = 950, 101
  20. button reset
  21. {
  22. style = buttonStyle
  23. layout = LAYOUT_ABSOLUTE
  24. height = 100
  25. width = 200
  26. position = 000, 0
  27. text = Play
  28. }
  29. button leaderboard
  30. {
  31. style = buttonStyle
  32. layout = LAYOUT_ABSOLUTE
  33. height = 100
  34. width = 200
  35. position = 250, 0
  36. text = Leaderboard
  37. }
  38. button achievements
  39. {
  40. style = buttonStyle
  41. layout = LAYOUT_ABSOLUTE
  42. height = 100
  43. width = 200
  44. position = 500, 0
  45. text = Achievements
  46. }
  47. button challenges
  48. {
  49. style = buttonStyle
  50. layout = LAYOUT_ABSOLUTE
  51. height = 100
  52. width = 200
  53. position = 750, 0
  54. text = Challenges
  55. }
  56. }
  57. }