namespace Content.Server.Explosion.Components; /// /// Gibs on trigger, self explanatory. /// Also in case of an implant using this, gibs the implant user instead. /// [RegisterComponent] public sealed class GibOnTriggerComponent : Component { /// /// Should gibbing also delete the owners items? /// [ViewVariables(VVAccess.ReadWrite)] [DataField("deleteItems")] public bool DeleteItems = false; }