mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-14 19:11:36 +08:00
19 lines
321 B
C
19 lines
321 B
C
#ifndef SPINE_SPINE_ROTATE_MODE_H
|
|
#define SPINE_SPINE_ROTATE_MODE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum spine_rotate_mode {
|
|
SPINE_ROTATE_MODE_TANGENT = 0,
|
|
SPINE_ROTATE_MODE_CHAIN,
|
|
SPINE_ROTATE_MODE_CHAIN_SCALE
|
|
} spine_rotate_mode;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPINE_SPINE_ROTATE_MODE_H */
|