mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
26 lines
678 B
C
26 lines
678 B
C
#ifndef SPINE_SPINE_FROM_SCALE_X_H
|
|
#define SPINE_SPINE_FROM_SCALE_X_H
|
|
|
|
#include "../base.h"
|
|
#include "types.h"
|
|
#include "arrays.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,
|
|
/*@null*/ float *offsets);
|
|
SPINE_C_API spine_rtti spine_from_scale_x_rtti(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPINE_SPINE_FROM_SCALE_X_H */
|