Ejemplo n.º 1
0
 protected RemovePartsOutfitTask(SimDescription sim, ICollection <BodyTypes> types, bool currentOnly, PostPerform onPostPerform)
 {
     mSim         = sim;
     mTypes       = new List <BodyTypes>(types).ToArray();
     mCurrentOnly = currentOnly;
     mPostPerform = onPostPerform;
 }
Ejemplo n.º 2
0
 protected RemovePartsOutfitTask(SimDescription sim, ICollection<BodyTypes> types, bool currentOnly, PostPerform onPostPerform)
 {
     mSim = sim;
     mTypes = new List<BodyTypes>(types).ToArray();
     mCurrentOnly = currentOnly;
     mPostPerform = onPostPerform;
 }
Ejemplo n.º 3
0
 public static void Perform(SimDescription sim, ICollection <BodyTypes> types, bool currentOnly, PostPerform onPostPerform)
 {
     new RemovePartsOutfitTask(sim, types, currentOnly, onPostPerform).AddToSimulator();
 }
Ejemplo n.º 4
0
 public static void Perform(Sim sim, ICollection <BodyTypes> types, bool currentOnly, PostPerform onPostPerform)
 {
     Perform(sim.SimDescription, types, currentOnly, onPostPerform);
 }
Ejemplo n.º 5
0
 public static void Perform(SimDescription sim, ICollection<BodyTypes> types, bool currentOnly, PostPerform onPostPerform)
 {
     new RemovePartsOutfitTask(sim, types, currentOnly, onPostPerform).AddToSimulator();
 }
Ejemplo n.º 6
0
 public static void Perform(Sim sim, ICollection<BodyTypes> types, bool currentOnly, PostPerform onPostPerform)
 {
     Perform(sim.SimDescription, types, currentOnly, onPostPerform);
 }