namespace Content.Shared._White.Cult.Runes; public sealed class CultRuneInvokeEvent : EntityEventArgs { public EntityUid Rune { get; set; } public EntityUid User { get; set; } public HashSet Cultists { get; } public bool Result { get; set; } public string? InvokePhraseOverride { get; set; } = null; public CultRuneInvokeEvent(EntityUid rune, EntityUid user, HashSet cultists) { Rune = rune; User = user; Cultists = cultists; } }