mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-10 09:08:42 +08:00
20 lines
298 B
C
20 lines
298 B
C
#ifndef SPINE_SPINE_PHYSICS_H
|
|
#define SPINE_SPINE_PHYSICS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum spine_physics {
|
|
SPINE_PHYSICS_NONE,
|
|
SPINE_PHYSICS_RESET,
|
|
SPINE_PHYSICS_UPDATE,
|
|
SPINE_PHYSICS_POSE
|
|
} spine_physics;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPINE_SPINE_PHYSICS_H */
|