aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/Hud.razor
blob: d5e3a4063d1b10a76d26ed55351014e1467813ee (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
27
28
29
30
@using Sandbox;
@using Sandbox.UI;

@namespace MurderGame
@inherits RootPanel
@attribute [StyleSheet]
<style>
.hidden {
    display: none;
}
</style>

<root>
    <BlindedOverlay/>
    <RoleOverlay/>
    <DeathOverlay/>
    <TabListOverlay/>
    <LookingAtInfo/>
    <ChatBox/>
    <VoiceList/>
    <PhaseTimer/>
    <Crosshair/>
    <Reload/>
    <PlayerInfo/>
    <Spectator/>
</root>

@code
{
}