Files
tbd-station-14/Content.Server/Cargo/Components/GalacticMarketComponent.cs
2022-02-16 18:23:23 +11:00

16 lines
410 B
C#

using Content.Shared.Cargo.Components;
using Robust.Shared.GameObjects;
using Robust.Shared.Players;
namespace Content.Server.Cargo.Components
{
[RegisterComponent]
public sealed class GalacticMarketComponent : SharedGalacticMarketComponent
{
public override ComponentState GetComponentState()
{
return new GalacticMarketState(GetProductIdList());
}
}
}