Exemplo n.º 1
0
 private void ClearSelectedSteps()
 {
     SelectedStepIndices.Clear();
     SelectedSteps.Clear();
 }
Exemplo n.º 2
0
 // Helper functions to avoid unwanted bugs
 private void AddSelectedStep(int index)
 {
     SelectedStepIndices.Add(index);
     SelectedSteps.Add(Cards[index].StepRange);
 }
Exemplo n.º 3
0
 private void RemoveSelectedStep(int index)
 {
     SelectedStepIndices.Remove(index);
     SelectedSteps.Remove(Cards[index].StepRange);
 }