2022-08-31 22:09:20 -04:00
|
|
|
using Content.Shared.Storage;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Tools.Innate
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class InnateToolComponent : Component
|
2022-08-31 22:09:20 -04:00
|
|
|
{
|
|
|
|
|
[DataField("tools")] public List<EntitySpawnEntry> Tools = new();
|
|
|
|
|
public List<EntityUid> ToolUids = new();
|
2024-02-21 07:23:04 +01:00
|
|
|
public List<string> ToSpawn = new();
|
2022-08-31 22:09:20 -04:00
|
|
|
}
|
|
|
|
|
}
|