PayloadCaseComponent.cs 568 B

123456789101112
  1. namespace Content.Shared.Payload.Components;
  2. /// <summary>
  3. /// Component that enables payloads and payload triggers to function.
  4. /// </summary>
  5. /// <remarks>
  6. /// If an entity with a <see cref="PayloadTriggerComponent"/> is installed into a an entity with a <see
  7. /// cref="PayloadCaseComponent"/>, the trigger will grant components to the case-entity. If the case entity is
  8. /// triggered, it will forward the trigger onto any contained payload entity.
  9. /// </remarks>
  10. [RegisterComponent]
  11. public sealed partial class PayloadCaseComponent : Component { }