16 lines
403 B
C#
16 lines
403 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()
|
|
{
|
|
return new GalacticMarketState(GetProductIdList());
|
|
}
|
|
}
|
|
}
|