9 lines
335 B
C#
9 lines
335 B
C#
namespace Content.Server._NF.BindToStation;
|
|
|
|
/// <summary>
|
|
/// Any object with this will have its contents bound to the station it's on.
|
|
/// Nasty hack for storage and spawners initializing after the station binding variation pass.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class BindFillToStationComponent : Component;
|