Files
tbd-station-14/Content.Server/Cargo/Components/GalacticMarketComponent.cs
2021-06-09 22:19:39 +02:00

16 lines
424 B
C#

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