public void AddTested(SimDescription sim, CheckOutfitTask.ProcessOptions test) { bool existed; CheckOutfitTask.ProcessOptions tested = GetTested(sim, out existed); mTested[sim.SimDescriptionId] = tested | test; }
public void RemoveTested(SimDescription sim, CheckOutfitTask.ProcessOptions test) { bool existed; CheckOutfitTask.ProcessOptions tested = GetTested(sim, out existed); tested &= ~test; mTested[sim.SimDescriptionId] = tested; }