コード例 #1
0
 private void CalculateStealDirections(
     uint prng, bool cuffs, ref bool found, ref int position)
 {
     if (Steal.WouldRareStealSucceed(prng, cuffs) &&
         !found && LoopIndex >= HealVals.Count)
     {
         found    = true;
         position = LoopIndex - HealVals.Count;
     }
 }