flutterxel_core_save method

bool flutterxel_core_save(
  1. Pointer<Char> filename,
  2. int exclude_images,
  3. int exclude_tilemaps,
  4. int exclude_sounds,
  5. int exclude_musics,
)

Implementation

bool flutterxel_core_save(
  ffi.Pointer<ffi.Char> filename,
  int exclude_images,
  int exclude_tilemaps,
  int exclude_sounds,
  int exclude_musics,
) {
  return _flutterxel_core_save(
    filename,
    exclude_images,
    exclude_tilemaps,
    exclude_sounds,
    exclude_musics,
  );
}