flutterxel_core_tilemap_pget method

bool flutterxel_core_tilemap_pget(
  1. int tm,
  2. int x,
  3. int y,
  4. Pointer<Int32> tile_x_out,
  5. Pointer<Int32> tile_y_out,
)

Implementation

bool flutterxel_core_tilemap_pget(
  int tm,
  int x,
  int y,
  ffi.Pointer<ffi.Int32> tile_x_out,
  ffi.Pointer<ffi.Int32> tile_y_out,
) {
  return _flutterxel_core_tilemap_pget(tm, x, y, tile_x_out, tile_y_out);
}