AlienEngine.Core.Physics.Constraints.SolverUpdateableChange.SolverUpdateableChange C# (CSharp) Метод

SolverUpdateableChange() публичный Метод

Constructs a new solver updateable change.
public SolverUpdateableChange ( bool shouldAdd, AlienEngine.Core.Physics.Constraints.SolverUpdateable item )
shouldAdd bool Whether the item is going to be added or removed.
item AlienEngine.Core.Physics.Constraints.SolverUpdateable Item to add or remove.
        public SolverUpdateableChange(bool shouldAdd, SolverUpdateable item)
        {
            ShouldAdd = shouldAdd;
            Item = item;
        }
    }
SolverUpdateableChange