mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 22:34:53 +08:00
15 lines
234 B
C++
15 lines
234 B
C++
#ifndef SKELETONJSON_H_
|
|
#define SKELETONJSON_H_
|
|
|
|
#include <spine/BaseSkeletonJson.h>
|
|
|
|
namespace spine {
|
|
|
|
class SkeletonJson: public BaseSkeletonJson {
|
|
public:
|
|
SkeletonJson ();
|
|
};
|
|
|
|
} /* namespace spine */
|
|
#endif /* SKELETONJSON_H_ */
|