mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* Fix objects tab not showing nents * Fix everything (cherry picked from commit 11701215322efe6e03c84a99645e60c766f0e2bb)
15 lines
359 B
C#
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;
|
|
}
|
|
}
|