Exemple #1
0
 public function __construct(Area $area = null, $i = 0, $j = 0)
 {
     $this->area = $area;
     $this->i = $i;
     $this->j = $j;
     $this->id = Sector::MakeID();
     if ($this->i == -2 && $this->j == -2) {
         $this->oob = true;
     }
 }