public World() { this.objects = new HashSet <PhysicsObject>(); this.edges = new HashSet <Edge>(); this.ContactGenerators = new ContactRegistry(this.objects, this.edges); }
public World() { _objects = new HashSet <PhysicsObject>(); _edges = new HashSet <Edge>(); ContactGenerators = new ContactRegistry(_objects, _edges); }