| 123456789101112131415161718192021222324252627 |
- <rml>
- <head>
- <title>Main Menu</title>
- <link type="text/template" href="../../assets/window.rml" />
- <style>
- body
- {
- width: 300dp;
- height: 225dp;
- margin: auto;
- }
-
- div#title_bar div#icon
- {
- decorator: image( icon-invader );
- }
- </style>
- </head>
- <body template="window" onload="load logo">
- <button onclick="goto start_game; close logo">Start Game</button><br />
- <button onclick="goto high_score; close logo">High Scores</button><br />
- <button onclick="goto options; close logo">Options</button><br />
- <button onclick="goto help; close logo">Help</button><br />
- <button onclick="exit">Exit</button>
- </body>
- </rml>
|