UI/Components/ChatBox.razor

A simple UI Razor component for the game's chat box. It defines a Panel-derived component in namespace KOTH.UI with a stylesheet attribute and renders a div with class "chatbox" containing the text "koth infdev".

@using System;
@using Sandbox.UI;

@namespace KOTH.UI
@inherits Panel

@attribute [StyleSheet]

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