spine_atlas_load_callback method

spine_atlas_result spine_atlas_load_callback(
  1. Pointer<Char> atlasData,
  2. Pointer<Char> atlasDir,
  3. spine_texture_loader_load_func load,
  4. spine_texture_loader_unload_func unload,
)

Implementation

spine_atlas_result spine_atlas_load_callback(
  ffi.Pointer<ffi.Char> atlasData,
  ffi.Pointer<ffi.Char> atlasDir,
  spine_texture_loader_load_func load,
  spine_texture_loader_unload_func unload,
) {
  return _spine_atlas_load_callback(
    atlasData,
    atlasDir,
    load,
    unload,
  );
}