Files
wwdpublic/Content.Shared/Station/StationsUpdatedEvent.cs
2023-09-27 21:59:12 +02:00

15 lines
321 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Station;
[NetSerializable, Serializable]
public sealed class StationsUpdatedEvent : EntityEventArgs
{
public readonly HashSet<NetEntity> Stations;
public StationsUpdatedEvent(HashSet<NetEntity> stations)
{
Stations = stations;
}
}