mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-22 18:26:12 +08:00
25 lines
689 B
C
25 lines
689 B
C
#ifndef SPINE_SPINE_LINKED_MESH_H
|
|
#define SPINE_SPINE_LINKED_MESH_H
|
|
|
|
#include "../base.h"
|
|
#include "types.h"
|
|
#include "arrays.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
SPINE_C_API spine_linked_mesh spine_linked_mesh_create(/*@null*/ spine_mesh_attachment mesh, const int skinIndex, size_t slotIndex,
|
|
const char *parent, bool inheritTimelines);
|
|
SPINE_C_API spine_linked_mesh spine_linked_mesh_create2(/*@null*/ spine_mesh_attachment mesh, const char *skin, size_t slotIndex, const char *parent,
|
|
bool inheritTimelines);
|
|
|
|
SPINE_C_API void spine_linked_mesh_dispose(spine_linked_mesh self);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPINE_SPINE_LINKED_MESH_H */
|