示例#1
0
 public World()
 {
     this.objects           = new HashSet <PhysicsObject>();
     this.edges             = new HashSet <Edge>();
     this.ContactGenerators = new ContactRegistry(this.objects, this.edges);
 }
示例#2
0
 public World()
 {
     _objects          = new HashSet <PhysicsObject>();
     _edges            = new HashSet <Edge>();
     ContactGenerators = new ContactRegistry(_objects, _edges);
 }