mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
19 lines
367 B
C++
19 lines
367 B
C++
#ifndef SKELETONJSON_H_
|
|
#define SKELETONJSON_H_
|
|
|
|
#include <spine/BaseSkeletonJson.h>
|
|
|
|
namespace spine {
|
|
|
|
class Atlas;
|
|
|
|
class SkeletonJson: public BaseSkeletonJson {
|
|
public:
|
|
SkeletonJson (Atlas *atlas);
|
|
/** The SkeletonJson owns the attachmentLoader */
|
|
SkeletonJson (BaseAttachmentLoader *attachmentLoader);
|
|
};
|
|
|
|
} /* namespace spine */
|
|
#endif /* SKELETONJSON_H_ */
|