mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-13 02:28:44 +08:00
18 lines
316 B
C++
18 lines
316 B
C++
#ifndef SKELETONJSON_H_
|
|
#define SKELETONJSON_H_
|
|
|
|
#include <spine/BaseSkeletonJson.h>
|
|
|
|
namespace spine {
|
|
|
|
class Atlas;
|
|
|
|
class SkeletonJson: public BaseSkeletonJson {
|
|
public:
|
|
SkeletonJson (Atlas *atlas);
|
|
SkeletonJson (BaseAttachmentLoader *attachmentLoader);
|
|
};
|
|
|
|
} /* namespace spine */
|
|
#endif /* SKELETONJSON_H_ */
|