Files
tbd-station-14/Content.Server/Gatherable/Components/GatheringProjectileComponent.cs
2023-05-14 13:15:18 +10:00

15 lines
388 B
C#

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