mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-11 09:38:44 +08:00
23 lines
477 B
C
23 lines
477 B
C
#ifndef SPINE_SPINE_POSED_H
|
|
#define SPINE_SPINE_POSED_H
|
|
|
|
#include "../base.h"
|
|
#include "types.h"
|
|
#include "arrays.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
SPINE_C_API void spine_posed_dispose(spine_posed self);
|
|
|
|
SPINE_C_API void spine_posed_constrained(spine_posed self);
|
|
SPINE_C_API void spine_posed_reset_constrained(spine_posed self);
|
|
SPINE_C_API bool spine_posed_is_pose_equal_to_applied(spine_posed self);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPINE_SPINE_POSED_H */
|