mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 22:34:53 +08:00
25 lines
426 B
C++
25 lines
426 B
C++
#ifndef SPINE_ATLASATTACHMENTLOADER_H_
|
|
#define SPINE_ATLASATTACHMENTLOADER_H_
|
|
|
|
#include <spine/AttachmentLoader.h>
|
|
#include <spine/Atlas.h>
|
|
|
|
#ifdef __cplusplus
|
|
namespace spine {
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
AttachmentLoader super;
|
|
Atlas* atlas;
|
|
} AtlasAttachmentLoader;
|
|
|
|
AtlasAttachmentLoader* AtlasAttachmentLoader_create (Atlas* atlas);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#endif /* SPINE_ATLASATTACHMENTLOADER_H_ */
|