1
0

StationPostInitEvent.cs 434 B

1234567891011
  1. using Content.Server.Station.Components;
  2. namespace Content.Server.Station.Events;
  3. /// <summary>
  4. /// Raised directed on a station after it has been initialized, as well as broadcast.
  5. /// This gets raised after the entity has been map-initialized, and the station's centcomm map/entity (if any) has been
  6. /// set up.
  7. /// </summary>
  8. [ByRefEvent]
  9. public readonly record struct StationPostInitEvent(Entity<StationDataComponent> Station);