2025-07-15 22:56:12 +02:00

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 */