FMI-Sandbox-01/code/ui/Hud.razor
2023-08-29 02:07:30 -04:00

20 lines
328 B
Plaintext

@using Sandbox;
@using Sandbox.UI;
@namespace MyGame
@inherits RootPanel
@attribute [StyleSheet]
<root>
<ChatBox/>
<VoiceList/>
<div class="header">
<label>Shooter Game</label>
<label class="subtitle">A template to kick start the production of your own games.</label>
</div>
</root>
@code
{
}