aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/Hud.razor
blob: 6ea6103168cd21406a2d7ac874ebaec3c058aecb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
{
}