mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-24 18:51:25 +08:00
24 lines
636 B
C
24 lines
636 B
C
#ifndef SPINE_SPINE_FROM_SCALE_X_H
|
|
#define SPINE_SPINE_FROM_SCALE_X_H
|
|
|
|
#include "../base.h"
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
SPINE_C_API spine_from_scale_x spine_from_scale_x_create(void);
|
|
|
|
SPINE_C_API void spine_from_scale_x_dispose(spine_from_scale_x self);
|
|
|
|
SPINE_C_API spine_rtti spine_from_scale_x_get_rtti(spine_from_scale_x self);
|
|
SPINE_C_API float spine_from_scale_x_value(spine_from_scale_x self, spine_skeleton skeleton, spine_bone_pose source, bool local, float * offsets);
|
|
SPINE_C_API spine_rtti spine_from_scale_x_rtti(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPINE_SPINE_FROM_SCALE_X_H */
|