aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/Hud.razor
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2023-07-27 22:11:31 +0100
committerLeonardo Bishop <me@leonardobishop.com>2023-07-27 22:11:31 +0100
commit71db52c5443a7bf82d9a23a770994a42b043be04 (patch)
treef75f2605bb1bdc53842cd85c90d105dcc77e1c10 /code/ui/Hud.razor
Initial commit
Diffstat (limited to 'code/ui/Hud.razor')
-rw-r--r--code/ui/Hud.razor26
1 files changed, 26 insertions, 0 deletions
diff --git a/code/ui/Hud.razor b/code/ui/Hud.razor
new file mode 100644
index 0000000..6ea6103
--- /dev/null
+++ b/code/ui/Hud.razor
@@ -0,0 +1,26 @@
+@using Sandbox;
+@using Sandbox.UI;
+
+@namespace MurderGame
+@inherits RootPanel
+@attribute [StyleSheet]
+<style>
+.hidden {
+ display: none;
+}
+</style>
+
+<root>
+ <BlindedOverlay/>
+ <RoleOverlay/>
+ <ChatBox/>
+ <VoiceList/>
+ <PhaseTimer/>
+ <Crosshair/>
+ <Reload/>
+ <PlayerInfo/>
+</root>
+
+@code
+{
+} \ No newline at end of file