main cult
This commit is contained in:
16
Content.Shared/_White/Cult/Runes/CultRuneInvokeEvent.cs
Normal file
16
Content.Shared/_White/Cult/Runes/CultRuneInvokeEvent.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Content.Shared.White.Cult.Runes;
|
||||
|
||||
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 CultRuneInvokeEvent(EntityUid rune, EntityUid user, HashSet<EntityUid> cultists)
|
||||
{
|
||||
Rune = rune;
|
||||
User = user;
|
||||
Cultists = cultists;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user