mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-06 15:24:55 +08:00
17 lines
375 B
C++
17 lines
375 B
C++
#include <spine-sfml/SkeletonJson.h>
|
|
#include <spine-sfml/AtlasAttachmentLoader.h>
|
|
|
|
namespace spine {
|
|
|
|
SkeletonJson::SkeletonJson (BaseAttachmentLoader *attachmentLoader) :
|
|
BaseSkeletonJson(attachmentLoader) {
|
|
yDown = true;
|
|
}
|
|
|
|
SkeletonJson::SkeletonJson (Atlas *atlas) :
|
|
BaseSkeletonJson(new AtlasAttachmentLoader(atlas)) {
|
|
yDown = true;
|
|
}
|
|
|
|
} /* namespace spine */
|