UI/Components/Watermark.razor

A small UI component for the game's HUD, implemented as a Razor/Sandbox.UI panel. It renders a div with the class "watermark" containing the text "koth infdev" and includes the component stylesheet.

@using System;
@using Sandbox.UI;

@namespace KOTH.UI
@inherits Panel

@attribute [StyleSheet]

<root>
	<div class="watermark">koth infdev</div>
</root>