* announce and maintance accesses * some fixes * Uwы * Delay * i think that this is final
12 lines
341 B
C#
12 lines
341 B
C#
/// <summary>
|
|
/// Проставил этот ивент во всех удовлетворяющих случаях смены кода.
|
|
/// </summary>
|
|
public sealed class AlertAccessesEvent : EntityEventArgs
|
|
{
|
|
public EntityUid Station { get; }
|
|
|
|
public AlertAccessesEvent(EntityUid station)
|
|
{
|
|
Station = station;
|
|
}
|
|
}
|