* Fix namespaces and optimize imports * Cleanup fixes * Merge conflict fixes * Merge conflict fixes * Merge conflict fixes
15 lines
398 B
C#
15 lines
398 B
C#
using Content.Shared.GameObjects.Components.Cargo;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.GameObjects.Components.Cargo
|
|
{
|
|
[RegisterComponent]
|
|
public class GalacticMarketComponent : SharedGalacticMarketComponent
|
|
{
|
|
public override ComponentState GetComponentState()
|
|
{
|
|
return new GalacticMarketState(GetProductIdList());
|
|
}
|
|
}
|
|
}
|