Cargo namespace

This commit is contained in:
Ed
2024-10-29 12:18:35 +03:00
parent e6bbc3900f
commit 2f57f11771
19 changed files with 22 additions and 22 deletions

View File

@@ -1,4 +1,4 @@
using Content.Shared._CP14.TravelingStoreShip;
using Content.Shared._CP14.Cargo;
using JetBrains.Annotations;
using Robust.Client.UserInterface;

View File

@@ -1,4 +1,4 @@
using Content.Shared._CP14.TravelingStoreShip;
using Content.Shared._CP14.Cargo;
using Robust.Client.AutoGenerated;
using Robust.Client.GameObjects;
using Robust.Client.UserInterface;

View File

@@ -1,4 +1,4 @@
using Content.Shared._CP14.TravelingStoreShip;
using Content.Shared._CP14.Cargo;
using Robust.Client.AutoGenerated;
using Robust.Client.UserInterface.CustomControls;
using Robust.Client.UserInterface.XAML;

View File

@@ -1,5 +1,5 @@
using System.Collections.Generic;
using Content.Shared._CP14.TravelingStoreShip.Prototype;
using Content.Shared._CP14.Cargo.Prototype;
using Robust.Shared.GameObjects;
using Robust.Shared.Prototypes;

View File

@@ -1,8 +1,8 @@
using System.Numerics;
using Content.Server.Shuttles.Components;
using Content.Server.Shuttles.Events;
using Content.Shared._CP14.TravelingStoreShip;
using Content.Shared._CP14.TravelingStoreShip.Prototype;
using Content.Shared._CP14.Cargo;
using Content.Shared._CP14.Cargo.Prototype;
using Robust.Shared.Map;
using Robust.Shared.Random;

View File

@@ -1,5 +1,5 @@
using System.Text;
using Content.Shared._CP14.TravelingStoreShip;
using Content.Shared._CP14.Cargo;
using Content.Shared.UserInterface;
namespace Content.Server._CP14.Cargo;

View File

@@ -3,8 +3,8 @@ using Content.Server.Shuttles.Systems;
using Content.Server.Station.Events;
using Content.Server.Station.Systems;
using Content.Shared._CP14.Currency;
using Content.Shared._CP14.TravelingStoreShip;
using Content.Shared._CP14.TravelingStoreShip.Prototype;
using Content.Shared._CP14.Cargo;
using Content.Shared._CP14.Cargo.Prototype;
using Content.Shared.Maps;
using Content.Shared.Paper;
using Content.Shared.Physics;

View File

@@ -1,6 +1,6 @@
using Content.Server._CP14.Objectives.Components;
using Content.Server.Objectives.Components.Targets;
using Content.Shared._CP14.TravelingStoreShip;
using Content.Shared._CP14.Cargo;
using Content.Shared.Objectives.Components;
using Content.Shared.Objectives.Systems;
using Content.Shared.Stacks;

View File

@@ -1,4 +1,4 @@
namespace Content.Shared._CP14.TravelingStoreShip;
namespace Content.Shared._CP14.Cargo;
/// <summary>
/// marks an entity into which trade with the city will put money when selling, or take it when buying.

View File

@@ -1,4 +1,4 @@
namespace Content.Shared._CP14.TravelingStoreShip;
namespace Content.Shared._CP14.Cargo;
/// <summary>
/// Allows users to view information on city trading opportunities

View File

@@ -1,4 +1,4 @@
namespace Content.Shared._CP14.TravelingStoreShip;
namespace Content.Shared._CP14.Cargo;
[RegisterComponent]
public sealed partial class CP14SellingPalettComponent : Component

View File

@@ -1,4 +1,4 @@
namespace Content.Shared._CP14.TravelingStoreShip;
namespace Content.Shared._CP14.Cargo;
public class CP14SharedCargoSystem : EntitySystem
{

View File

@@ -1,9 +1,9 @@
using Content.Shared._CP14.TravelingStoreShip.Prototype;
using Content.Shared._CP14.Cargo.Prototype;
using Content.Shared.Destructible.Thresholds;
using Robust.Shared.Prototypes;
using Robust.Shared.Utility;
namespace Content.Shared._CP14.TravelingStoreShip;
namespace Content.Shared._CP14.Cargo;
/// <summary>
/// Add to the station so that traveling store ship starts running on it

View File

@@ -3,7 +3,7 @@ using Robust.Shared.Prototypes;
using Robust.Shared.Serialization;
using Robust.Shared.Utility;
namespace Content.Shared._CP14.TravelingStoreShip;
namespace Content.Shared._CP14.Cargo;
[Serializable, NetSerializable]
public enum CP14StoreUiKey

View File

@@ -1,7 +1,7 @@
using System.Text;
using Robust.Shared.Prototypes;
namespace Content.Shared._CP14.TravelingStoreShip.Prototype.BuyServices;
namespace Content.Shared._CP14.Cargo.Prototype.BuyServices;
public sealed partial class CP14BuyItemsService : CP14StoreBuyService
{

View File

@@ -3,7 +3,7 @@ using JetBrains.Annotations;
using Robust.Shared.Prototypes;
using Robust.Shared.Utility;
namespace Content.Shared._CP14.TravelingStoreShip.Prototype;
namespace Content.Shared._CP14.Cargo.Prototype;
/// <summary>
/// Stores the price and product/service pair that players can buy.

View File

@@ -3,7 +3,7 @@ using JetBrains.Annotations;
using Robust.Shared.Prototypes;
using Robust.Shared.Utility;
namespace Content.Shared._CP14.TravelingStoreShip;
namespace Content.Shared._CP14.Cargo;
/// <summary>
/// Stores the price and product/service pair that players can buy.

View File

@@ -1,7 +1,7 @@
using Content.Shared.Stacks;
using Robust.Shared.Prototypes;
namespace Content.Shared._CP14.TravelingStoreShip.Prototype.SellServices;
namespace Content.Shared._CP14.Cargo.Prototype.SellServices;
public sealed partial class CP14SellStackService : CP14StoreSellService
{

View File

@@ -1,7 +1,7 @@
using Content.Shared.Whitelist;
using Robust.Shared.Prototypes;
namespace Content.Shared._CP14.TravelingStoreShip.Prototype.SellServices;
namespace Content.Shared._CP14.Cargo.Prototype.SellServices;
public sealed partial class CP14SellWhitelistService : CP14StoreSellService
{