-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSpriteKit+QuickLook.h
More file actions
44 lines (40 loc) · 895 Bytes
/
SpriteKit+QuickLook.h
File metadata and controls
44 lines (40 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// SpriteKit+QuickLook.h
// SB+SpriteKit
//
// Created by Steffen Itterheim on 13/03/14.
// Distributed under MIT License
//
#import <SpriteKit/SpriteKit.h>
@interface QuickLookHelper : NSObject
@end
@interface SKNode (QuickLook)
-(id) debugQuickLookObject;
@end
@interface SKTexture (QuickLook)
-(id) debugQuickLookObject;
@end
@interface SKTextureAtlas (QuickLook)
-(id) debugQuickLookObject;
@end
@interface SKAction (QuickLook)
-(id) debugQuickLookObject;
@end
@interface SKView (QuickLook)
-(id) debugQuickLookObject;
@end
@interface SKPhysicsBody (QuickLook)
-(id) debugQuickLookObject;
@end
@interface SKPhysicsWorld (QuickLook)
-(id) debugQuickLookObject;
@end
@interface SKPhysicsJoint (QuickLook)
-(id) debugQuickLookObject;
@end
@interface SKTransition (QuickLook)
-(id) debugQuickLookObject;
@end
@interface SKKeyframeSequence (QuickLook)
-(id) debugQuickLookObject;
@end