stbte_set_dimensions function

  1. @Native<Void Function(Pointer<stbte_tilemap>, Int, Int)>(ffi.Pointer<stbte_tilemap>, ffi.Int, ffi.Int)>()
void stbte_set_dimensions(
  1. Pointer<stbte_tilemap> tm,
  2. int max_x,
  3. int max_y
)

gets the link associated with the tile at x,y.

Implementation

@ffi.Native<ffi.Void Function(ffi.Pointer<stbte_tilemap>, ffi.Int, ffi.Int)>()
external void stbte_set_dimensions(
  ffi.Pointer<stbte_tilemap> tm,
  int max_x,
  int max_y,
);