namespace Content.Server.Gatherable.Components; /// /// Destroys a gatherable entity when colliding with it. /// [RegisterComponent] public sealed partial class GatheringProjectileComponent : Component { /// /// How many more times we can gather. /// [ViewVariables(VVAccess.ReadWrite), DataField("amount")] public int Amount = 1; }