aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/Hud.razor
blob: c7d1ffa677b56c500738e67a245a7d70d7ea30b6 (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
@namespace MurderGame
@using Sandbox.UI
@inherits Sandbox.UI.RootPanel
@attribute [StyleSheet]
<style>
.hidden {
    display: none;
}
</style>

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

@code
{
}