10 lines
302 B
C#
10 lines
302 B
C#
using Content.Server.Station.Components;
|
|
|
|
namespace Content.Server.Station.Events;
|
|
|
|
/// <summary>
|
|
/// Raised directed on a station after it has been initialized, as well as broadcast.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public readonly record struct StationPostInitEvent(Entity<StationDataComponent> Station);
|