16 lines
310 B
C#
16 lines
310 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using BITKit;
|
|
namespace BITFALL.Player.Equip
|
|
{
|
|
public interface IEquipService
|
|
{
|
|
IOptional<float> Zoom { get; }
|
|
float Stable { get; set; }
|
|
bool AllowAttack { get; set; }
|
|
bool AllowScope { get; set; }
|
|
IValidHandle AllowEquip { get; }
|
|
}
|
|
}
|
|
|