Exemple #1
0
            public void AddTested(SimDescription sim, CheckOutfitTask.ProcessOptions test)
            {
                bool existed;

                CheckOutfitTask.ProcessOptions tested = GetTested(sim, out existed);

                mTested[sim.SimDescriptionId] = tested | test;
            }
Exemple #2
0
            public void RemoveTested(SimDescription sim, CheckOutfitTask.ProcessOptions test)
            {
                bool existed;

                CheckOutfitTask.ProcessOptions tested = GetTested(sim, out existed);

                tested &= ~test;

                mTested[sim.SimDescriptionId] = tested;
            }