Files
sbox-public/engine/Sandbox.System/Attributes/ClientEditableAttribute.cs
Garry Newman 5046b22eee Sandbox updates 3 (#3589)
* 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
2025-12-10 14:43:30 +00:00

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
{
}