using System.Collections; using System.Collections.Generic; using BITKit; namespace BITFALL.Player.Equip { public interface IEquipService { IOptional Zoom { get; } float Stable { get; set; } bool AllowAttack { get; set; } bool AllowScope { get; set; } IValidHandle AllowEquip { get; } } }