Files
OldThink/Content.Shared/_White/Cult/Runes/CultRuneInvokeEvent.cs

19 lines
511 B
C#
Raw Permalink Normal View History

namespace Content.Shared._White.Cult.Runes;
2024-01-27 15:19:52 +03:00
public sealed class CultRuneInvokeEvent : EntityEventArgs
{
public EntityUid Rune { get; set; }
public EntityUid User { get; set; }
public HashSet<EntityUid> Cultists { get; }
public bool Result { get; set; }
public string? InvokePhraseOverride { get; set; } = null;
2024-01-27 15:19:52 +03:00
public CultRuneInvokeEvent(EntityUid rune, EntityUid user, HashSet<EntityUid> cultists)
{
Rune = rune;
User = user;
Cultists = cultists;
}
}