using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SRMultiplayer.Networking { public class NetworkPlayerAmmo : Ammo { public byte ID; public NetworkPlayerAmmo(byte id, HashSet potentialAmmo, int numSlots, int usableSlots, Predicate[] slotPreds, Func slotMaxCountFunction) : base(potentialAmmo, numSlots, usableSlots, slotPreds, slotMaxCountFunction) { ID = id; } } }