main_menu.rml 665 B

123456789101112131415161718192021222324252627
  1. <rml>
  2. <head>
  3. <title>Main Menu</title>
  4. <link type="text/template" href="../../assets/window.rml" />
  5. <style>
  6. body
  7. {
  8. width: 300dp;
  9. height: 225dp;
  10. margin: auto;
  11. }
  12. div#title_bar div#icon
  13. {
  14. decorator: image( icon-invader );
  15. }
  16. </style>
  17. </head>
  18. <body template="window" onload="load logo">
  19. <button onclick="goto start_game; close logo">Start Game</button><br />
  20. <button onclick="goto high_score; close logo">High Scores</button><br />
  21. <button onclick="goto options; close logo">Options</button><br />
  22. <button onclick="goto help; close logo">Help</button><br />
  23. <button onclick="exit">Exit</button>
  24. </body>
  25. </rml>