InnateToolComponent.cs 341 B

123456789101112
  1. using Content.Shared.Storage;
  2. namespace Content.Server.Tools.Innate
  3. {
  4. [RegisterComponent]
  5. public sealed partial class InnateToolComponent : Component
  6. {
  7. [DataField("tools")] public List<EntitySpawnEntry> Tools = new();
  8. public List<EntityUid> ToolUids = new();
  9. public List<string> ToSpawn = new();
  10. }
  11. }