fish-station/Content.Server/_Sunrise/AlertAccesses/Systems/AlertAccessesEvent.cs
iertis 45ea2b6732
announce and maintance accesses (#1080)
* announce and maintance accesses

* some fixes

* Uwы

* Delay

* i think that this is final
2025-01-10 21:37:50 +03:00

12 lines
341 B
C#

/// <summary>
/// Проставил этот ивент во всех удовлетворяющих случаях смены кода.
/// </summary>
public sealed class AlertAccessesEvent : EntityEventArgs
{
public EntityUid Station { get; }
public AlertAccessesEvent(EntityUid station)
{
Station = station;
}
}