19 lines
466 B
C#
19 lines
466 B
C#
namespace Content.Shared._CP14.Cargo;
|
|
|
|
public class CP14SharedCargoSystem : EntitySystem
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// is called in just before the goods are shipped into town, and before the profit on them is calculated. It allows you to edit the list of sent items.
|
|
/// </summary>
|
|
public sealed class BeforeSellEntities : EntityEventArgs
|
|
{
|
|
public HashSet<EntityUid> Sent;
|
|
|
|
public BeforeSellEntities(ref HashSet<EntityUid> sent)
|
|
{
|
|
Sent = sent;
|
|
}
|
|
}
|