2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.RCD.Components
|
2020-08-13 12:39:23 -05:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class RCDAmmoComponent : Component
|
2020-08-13 12:39:23 -05:00
|
|
|
{
|
|
|
|
|
//How much ammo we refill
|
2021-10-24 06:34:00 +03:00
|
|
|
[ViewVariables(VVAccess.ReadWrite)] [DataField("refillAmmo")] public int RefillAmmo = 5;
|
2020-08-13 12:39:23 -05:00
|
|
|
}
|
|
|
|
|
}
|