Files
crystall-punk-14/Content.Shared/_CP14/Cargo/CP14SharedCargoSystem.cs
2024-10-29 12:18:35 +03:00

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;
}
}