2025-05-28 20:21:58 +03:00

17 lines
301 B
C#

using Sandbox;
using System.Collections.Generic;
[Icon( "checkroom" )]
[Category( "Citizen" )]
public sealed class ClothingDresser : Component, Component.ExecuteInEditor
{
public Dictionary<GameObject, Clothing> EnabledClothing { get; set; } = new();
protected override void OnUpdate()
{
}
}