Files
crystall-punk-14/Content.Shared/Station/StationsUpdatedEvent.cs

15 lines
321 B
C#
Raw Normal View History

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;
}
}