2025-07-24 00:37:13 +02:00

27 lines
705 B
C

#ifndef SPINE_SPINE_TO_X_H
#define SPINE_SPINE_TO_X_H
#include "../base.h"
#include "types.h"
#include "arrays.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 spine_rtti spine_to_x_get_rtti(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);
SPINE_C_API spine_rtti spine_to_x_rtti(void);
#ifdef __cplusplus
}
#endif
#endif /* SPINE_SPINE_TO_X_H */