fish-station/Content.Server/GameTicking/Rules/Components/VampireRuleComponent.cs

13 lines
400 B
C#

using Content.Shared.NPC.Prototypes;
using Content.Shared.Roles;
using Content.Shared.Vampire.Components;
using Robust.Shared.Audio;
using Robust.Shared.Prototypes;
namespace Content.Server.GameTicking.Rules.Components;
[RegisterComponent, Access(typeof(VampireRuleSystem))]
public sealed partial class VampireRuleComponent : Component
{
public readonly List<EntityUid> VampireMinds = new();
}