mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-19 22:08:34 -04:00
22 lines
390 B
Plaintext
22 lines
390 B
Plaintext
@using System;
|
|
@using Sandbox.UI;
|
|
@using Sandbox;
|
|
@using Menu;
|
|
@using Sandbox.Menu;
|
|
|
|
<root tooltip="@Title">
|
|
<div class="inner">
|
|
<i>@Icon</i>
|
|
<span>@Value</span>
|
|
</div>
|
|
</root>
|
|
|
|
@code
|
|
{
|
|
public string Icon { get; set; }
|
|
public string Title { get; set; }
|
|
public string Value { get; set; }
|
|
|
|
protected override int BuildHash() => HashCode.Combine(Value);
|
|
}
|