stbte_set_spacing function
call this once to set the left & right side widths. don't call it again since the user can change it
Implementation
@ffi.Native<
ffi.Void Function(
ffi.Pointer<stbte_tilemap>,
ffi.Int,
ffi.Int,
ffi.Int,
ffi.Int,
)
>()
external void stbte_set_spacing(
ffi.Pointer<stbte_tilemap> tm,
int spacing_x,
int spacing_y,
int palette_spacing_x,
int palette_spacing_y,
);