Files
wwdpublic/Content.Server/Tools/Innate/InnateToolComponent.cs
2024-03-05 09:34:57 +01:00

13 lines
341 B
C#

using Content.Shared.Storage;
namespace Content.Server.Tools.Innate
{
[RegisterComponent]
public sealed partial class InnateToolComponent : Component
{
[DataField("tools")] public List<EntitySpawnEntry> Tools = new();
public List<EntityUid> ToolUids = new();
public List<string> ToSpawn = new();
}
}