Files
crystall-punk-14/Content.Server/Gatherable/Components/GatheringProjectileComponent.cs

15 lines
396 B
C#
Raw Permalink Normal View History

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