This commit is contained in:
Rane
2022-02-10 17:15:06 -05:00
committed by GitHub
parent 65faa85620
commit 81c7a03c97
22 changed files with 502 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
using Content.Server.Storage;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Server.Drone.Components
{
[RegisterComponent]
public sealed class DroneComponent : Component
{
[DataField("tools")] public List<EntitySpawnEntry> Tools = new();
public List<EntityUid> ToolUids = new();
public bool AlreadyAwoken = false;
}
}