2022-07-21 17:30:00 -05:00
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Station;
|
|
|
|
|
|
|
|
|
|
|
|
[NetSerializable, Serializable]
|
|
|
|
|
|
public sealed class StationsUpdatedEvent : EntityEventArgs
|
|
|
|
|
|
{
|
2024-01-10 19:30:20 +11:00
|
|
|
|
public readonly List<(string Name, NetEntity Entity)> Stations;
|
2022-07-21 17:30:00 -05:00
|
|
|
|
|
2024-01-10 19:30:20 +11:00
|
|
|
|
public StationsUpdatedEvent(List<(string Name, NetEntity Entity)> stations)
|
2022-07-21 17:30:00 -05:00
|
|
|
|
{
|
|
|
|
|
|
Stations = stations;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|