Exemplo n.º 1
0
 public bool Equals(uiControl targ, float off, cPosDir d)
 {
     return(this.target == targ && Util.floatEq(this.offset, off) && this.dir == d);
 }
Exemplo n.º 2
0
 public ControlPositioner(uiControl c, float offset, cPosDir dir)
 {
     this.target = c;
     this.offset = offset;
     this.dir    = dir;
 }