spine_sequence_get_path method

Pointer<Char> spine_sequence_get_path(
  1. spine_sequence self,
  2. Pointer<Char> basePath,
  3. int index
)

Implementation

ffi.Pointer<ffi.Char> spine_sequence_get_path(
  spine_sequence self,
  ffi.Pointer<ffi.Char> basePath,
  int index,
) {
  return _spine_sequence_get_path(
    self,
    basePath,
    index,
  );
}