示例#1
0
 /// <summary>
 /// Tells if the Badge can be equipped or not based on how much BP it costs.
 /// </summary>
 public bool CanEquip(Badge badge)
 {
     return(badge != null && BP >= badge.BPCost);
 }