This commit is contained in:
Oscar
2025-05-28 20:21:58 +03:00
parent 77c1704cd6
commit a6f2e43c49
35 changed files with 1310 additions and 132 deletions

View File

@@ -0,0 +1,16 @@
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()
{
}
}

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
</Project>