mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-22 16:17:00 +03:00
18 lines
483 B
C#
18 lines
483 B
C#
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;
|
|
}
|
|
}
|