aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/Hud.razor
blob: 7ec500ea5e136ab590afe7cf77430aaf1f8f9b10 (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
{
}