ui/PausedOverlay.razor

A Razor UI component for the paused overlay in a Sandbox game. It inherits Panel, applies a stylesheet PausedOverlay.razor.scss, and renders a root element with an empty div.title. There is no code-behind logic.

@namespace Sandbox
@using Sandbox;
@using Sandbox.UI;
@using System;
@inherits Panel
@attribute [StyleSheet("PausedOverlay.razor.scss")]

<root>
	<div class="title"></div>
</root>

@code
{
	
}