mirror of
https://github.com/Facepunch/sbox-public.git
synced 2025-12-23 22:48:07 -05:00
* Gibs copy tint * Add ClientEditableAttribute * Panel based ControlSheet supports ToggleGroup * Panel based ControlSheet hides empty titles * Fix SliderControl default step * Fix SliderControl text box resizing * Fix slidercontrol number entry not getting styled * ControlSheetGroup support ShowIf * Make wheel joint properties ClientEditable, add steps
11 lines
313 B
C#
11 lines
313 B
C#
namespace Sandbox;
|
|
|
|
/// <summary>
|
|
/// Indicates that this propery can be edited by the client, in a game like Sandbox Mode. In reality
|
|
/// this is used however the game wants to implement it.
|
|
/// </summary>
|
|
[AttributeUsage( AttributeTargets.Property )]
|
|
public sealed class ClientEditableAttribute : Attribute
|
|
{
|
|
}
|