mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-13 04:28:12 +00:00
Implement MessageBox UI: Add styles and structure for message box, including buttons and event handling
This commit is contained in:
20
Minecraft.Client/Assets/UI/MessageBox.rml
Normal file
20
Minecraft.Client/Assets/UI/MessageBox.rml
Normal file
@@ -0,0 +1,20 @@
|
||||
<rml>
|
||||
<head>
|
||||
<title>Message Box</title>
|
||||
<link type="text/rcss" href="MessageBox.rcss"/>
|
||||
</head>
|
||||
<body>
|
||||
<div id="message_box">
|
||||
<p id="title"></p>
|
||||
<div id="text_container">
|
||||
<p id="description"></p>
|
||||
</div>
|
||||
<div id="buttons">
|
||||
<button id="button0">Button 0</button>
|
||||
<button id="button1">Button 1</button>
|
||||
<button id="button2">Button 2</button>
|
||||
<button id="button3">Button 3</button>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</rml>
|
||||
Reference in New Issue
Block a user