Files
tbd-station-14/Content.Shared/Station/StationsUpdatedEvent.cs
metalgearsloth 1170121532 Fix objects tab not showing nents (#23837)
* Fix objects tab not showing nents

* Fix everything
2024-01-10 01:30:20 -07:00

15 lines
359 B
C#

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