areNeighborCells method

int areNeighborCells(
  1. int origin,
  2. int destination,
  3. Pointer<Int> out
)

@defgroup areNeighborCells areNeighborCells Functions for areNeighborCells @{ / /** @brief returns whether or not the provided hexagons border

Implementation

int areNeighborCells(
  int origin,
  int destination,
  ffi.Pointer<ffi.Int> out,
) {
  return _areNeighborCells(
    origin,
    destination,
    out,
  );
}