mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 09:46:02 +08:00
16 lines
256 B
Objective-C
16 lines
256 B
Objective-C
|
|
#import "cocos2d.h"
|
|
#import <spine/spine-cocos2d-iphone.h>
|
|
|
|
@interface ExampleLayer : CCLayer {
|
|
Atlas *atlas;
|
|
SkeletonData *skeletonData;
|
|
Animation *walkAnimation;
|
|
Animation *jumpAnimation;
|
|
CCSkeleton* skeletonNode;
|
|
}
|
|
|
|
+(CCScene*) scene;
|
|
|
|
@end
|