namespace Content.Shared._CP14.Cargo; public class CP14SharedCargoSystem : EntitySystem { } /// /// 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. /// public sealed class BeforeSellEntities : EntityEventArgs { public HashSet Sent; public BeforeSellEntities(ref HashSet sent) { Sent = sent; } }