Files
GabsPuNs-Project_Zenith_Main/Minecraft.Client/Assets/UI/PauseMenu.rml
GabsPuNs 3ee643962d Fix compilation for MSVC, also moved some folders.
1. Added again the libraries for MSVC. If you need MinGW libraries version tell me
2. Removed "#include stdafx.h". Is not needed.
3. Renamed "RmlUIAssets" to "UI" and "Menus" to "Iggy"
2026-06-10 21:22:41 -04:00

33 lines
893 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">Resume Game</button>
<button id="help_options">Help &amp; Options</button>
<button id="achievements">Achievements</button>
<button id="save_game">Save Game</button>
<button id="exit_game">Exit Game</button>
</div>
<div id="exit_dialog">
<p id="exit_text">Exit Game?</p>
<div id="exit_buttons">
<button id="exit_save">Save &amp; Exit</button>
<button id="exit_nosave">Exit without Saving</button>
<button id="exit_cancel">Cancel</button>
</div>
</div>
<div id="save_dialog">
<p id="save_text">Overwrite existing save?</p>
<div id="save_buttons">
<button id="save_cancel">Cancel</button>
<button id="save_confirm">Save</button>
</div>
</div>
</div>
</body>
</rml>