mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-14 19:11:36 +08:00
20 lines
321 B
C
20 lines
321 B
C
#ifndef SPINE_SPINE_MIX_BLEND_H
|
|
#define SPINE_SPINE_MIX_BLEND_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum spine_mix_blend {
|
|
SPINE_MIX_BLEND_SETUP = 0,
|
|
SPINE_MIX_BLEND_FIRST,
|
|
SPINE_MIX_BLEND_REPLACE,
|
|
SPINE_MIX_BLEND_ADD
|
|
} spine_mix_blend;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPINE_SPINE_MIX_BLEND_H */
|