Пример #1
0
 public Enumerator(GamePhysics owner, MaskData maskData)
 {
     this.owner     = owner;
     this.maskData  = maskData;
     this.current   = null;
     this.nextIndex = 0;
 }
Пример #2
0
 public Enumerator(GamePhysics owner, int nextIndex)
 {
     this.owner     = owner;
     this.current   = null;
     this.nextIndex = nextIndex;
 }
Пример #3
0
 public MoverInMaskEnumerable(GamePhysics owner, MaskData maskData)
 {
     this.owner    = owner;
     this.maskData = maskData;
 }
Пример #4
0
 public ChildListEnumerable(GamePhysics owner, int firstChildIndex)
 {
     this.owner           = owner;
     this.firstChildIndex = firstChildIndex;
 }