예제 #1
0
파일: Dresser.cs 프로젝트: Robobeurre/NRaas
            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
파일: Dresser.cs 프로젝트: Robobeurre/NRaas
            public void AddTested(SimDescription sim, CheckOutfitTask.ProcessOptions test)
            {
                bool existed;
                CheckOutfitTask.ProcessOptions tested = GetTested(sim, out existed);

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