mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-10 00:58:43 +08:00
19 lines
336 B
C
19 lines
336 B
C
#ifndef SPINE_SPINE_TEXTURE_WRAP_H
|
|
#define SPINE_SPINE_TEXTURE_WRAP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum spine_texture_wrap {
|
|
SPINE_TEXTURE_WRAP_MIRRORED_REPEAT,
|
|
SPINE_TEXTURE_WRAP_CLAMP_TO_EDGE,
|
|
SPINE_TEXTURE_WRAP_REPEAT
|
|
} spine_texture_wrap;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPINE_SPINE_TEXTURE_WRAP_H */
|