Split various drone behaviors out of drone component (innate tool, unpowered flashlight) (#10474)

This commit is contained in:
Rane
2022-08-31 22:09:20 -04:00
committed by GitHub
parent 45349f159d
commit 7bee0063a6
9 changed files with 129 additions and 81 deletions

View File

@@ -0,0 +1,11 @@
using Content.Shared.Storage;
namespace Content.Server.Tools.Innate
{
[RegisterComponent]
public sealed class InnateToolComponent : Component
{
[DataField("tools")] public List<EntitySpawnEntry> Tools = new();
public List<EntityUid> ToolUids = new();
}
}