Files
tbd-station-14/Content.Server/RCD/Components/RCDAmmoComponent.cs
2022-02-16 18:23:23 +11:00

14 lines
387 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
namespace Content.Server.RCD.Components
{
[RegisterComponent]
public sealed class RCDAmmoComponent : Component
{
//How much ammo we refill
[ViewVariables(VVAccess.ReadWrite)] [DataField("refillAmmo")] public int RefillAmmo = 5;
}
}