mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-06 02:36:56 +08:00
23 lines
568 B
C
23 lines
568 B
C
#ifndef SPINE_SPINE_TO_X_H
|
|
#define SPINE_SPINE_TO_X_H
|
|
|
|
#include "../base.h"
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
SPINE_C_API spine_to_x spine_to_x_create(void);
|
|
|
|
SPINE_C_API void spine_to_x_dispose(spine_to_x self);
|
|
|
|
SPINE_C_API float spine_to_x_mix(spine_to_x self, spine_transform_constraint_pose pose);
|
|
SPINE_C_API void spine_to_x_apply(spine_to_x self, spine_skeleton skeleton, spine_transform_constraint_pose pose, spine_bone_pose bone, float value, bool local, bool additive);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPINE_SPINE_TO_X_H */
|