12 lines
296 B
C#
12 lines
296 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();
|
|
}
|
|
}
|