示例#1
0
            public void RemoveTested(SimDescription sim, CheckOutfitTask.ProcessOptions test)
            {
                bool existed;
                CheckOutfitTask.ProcessOptions tested = GetTested(sim, out existed);

                tested &= ~test;

                mTested[sim.SimDescriptionId] = tested;
            }
示例#2
0
            public void AddTested(SimDescription sim, CheckOutfitTask.ProcessOptions test)
            {
                bool existed;
                CheckOutfitTask.ProcessOptions tested = GetTested(sim, out existed);

                mTested[sim.SimDescriptionId] = tested | test;
            }