mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-10 14:20:17 +00:00
* Stringtables now support IDs and Strings at the same time. DLCs have a new branch for RMLUI now.
* Removed hardcoded StringTableNameMap for use Strings instead of IDs for RMLUI.
* Strings in RMLUI now uses [] since {} is used for data and it could affect future menus.
* Removed GetStringTable. app.GetString now support WStrings.
33 lines
973 B
Plaintext
33 lines
973 B
Plaintext
<rml>
|
|
<head>
|
|
<title>Pause Menu</title>
|
|
<link type="text/rcss" href="PauseMenu.rcss"/>
|
|
</head>
|
|
<body>
|
|
<div id="pause_menu">
|
|
<div id="buttons">
|
|
<button id="resume">[IDS_RESUME_GAME]</button>
|
|
<button id="help_options">[IDS_HELP_AND_OPTIONS]</button>
|
|
<button id="achievements">[IDS_ACHIEVEMENTS]</button>
|
|
<button id="save_game">[IDS_SAVE_GAME]</button>
|
|
<button id="exit_game">[IDS_EXIT_GAME]</button>
|
|
</div>
|
|
<div id="exit_dialog">
|
|
<p id="exit_text">[IDS_CONFIRM_EXIT_GAME]</p>
|
|
<div id="exit_buttons">
|
|
<button id="exit_save">[IDS_EXIT_GAME_SAVE]</button>
|
|
<button id="exit_nosave">[IDS_EXIT_GAME_NO_SAVE]</button>
|
|
<button id="exit_cancel">[IDS_CANCEL]</button>
|
|
</div>
|
|
</div>
|
|
<div id="save_dialog">
|
|
<p id="save_text">[IDS_CONFIRM_SAVE_GAME]</p>
|
|
<div id="save_buttons">
|
|
<button id="save_cancel">[IDS_CANCEL]</button>
|
|
<button id="save_confirm">[IDS_CONFIRM_SAVE_GAME]</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</rml>
|