mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-23 15:59:04 -04:00
22 lines
387 B
Plaintext
22 lines
387 B
Plaintext
@using Sandbox;
|
|
@using Sandbox.UI;
|
|
|
|
@inherits Panel
|
|
|
|
@if ( !MenuSystem.ShowOverlay )
|
|
return;
|
|
|
|
<root>
|
|
<div class="panel">
|
|
<label class="title">s& dev preview</label>
|
|
<label class="version">@Application.Version</label>
|
|
</div>
|
|
</root>
|
|
|
|
@code{
|
|
protected override int BuildHash()
|
|
{
|
|
return System.HashCode.Combine( MenuSystem.ShowOverlay );
|
|
}
|
|
}
|