Example #1
0
 public void CopyLimitation(int groupIndex, int limitationIndex, Limitation toBeCopied)
 {
     Limitation newLimitation = toBeCopied.CreateDeepCopy();
     _group[groupIndex].SetLimitation(limitationIndex, newLimitation);
     _needsToBeSaved = true;
     _needsToBeCounted = true;
 }