Example #1
0
 public void collideWithSomethingMacro(Collider other)
 {
     int[] coords = world.getCoordsFromString(other.gameObject);
     if (coords[0] != -1 && coords[1] != -1)
     {
         world.chunkHandler.add(other.transform, playerNum);
     }
 }