| 123456789101112131415161718192021222324252627 |
- <rml>
- <head>
- <title>Quit?</title>
- <link type="text/template" href="window.rml" />
- <style>
- body
- {
- width: 350px;
- height: 135px;
-
- margin: auto;
- }
-
- div#title_bar div#icon
- {
- icon-image-s: 332px 383px;
- icon-image-t: 191px 231px;
- }
- </style>
- </head>
- <body template="pywindow" onload="OnWindowLoad(self); game.SetPaused(True)" onunload="game.SetPaused(False)">
- <br />
- <p>Are you sure you want to end this game?</p>
- <button onclick="LoadMenu('high_score');document.context.documents['game_window'].Close()">Yes</button>
- <button onclick="document.Close()">No!</button>
- </body>
- </rml>
|