├── .gitignore ├── LICENSE ├── README.md ├── SKNode+SSKTags.h ├── SKNode+SSKTags.m ├── SKSpriteNode+SSKAnimation.h ├── SKSpriteNode+SSKAnimation.m ├── SSKButtonNode.h ├── SSKButtonNode.m ├── SSKInteractionHandler.h ├── SSKInteractionHandler.m ├── SSKMultiLineLabelNode.h ├── SSKMultiLineLabelNode.m ├── SSKMultiplatform.h ├── SSKStretchableNode.h ├── SSKStretchableNode.m ├── SSKTileableNode.h ├── SSKTileableNode.m └── SuperSpriteKit.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/README.md -------------------------------------------------------------------------------- /SKNode+SSKTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SKNode+SSKTags.h -------------------------------------------------------------------------------- /SKNode+SSKTags.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SKNode+SSKTags.m -------------------------------------------------------------------------------- /SKSpriteNode+SSKAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SKSpriteNode+SSKAnimation.h -------------------------------------------------------------------------------- /SKSpriteNode+SSKAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SKSpriteNode+SSKAnimation.m -------------------------------------------------------------------------------- /SSKButtonNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SSKButtonNode.h -------------------------------------------------------------------------------- /SSKButtonNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SSKButtonNode.m -------------------------------------------------------------------------------- /SSKInteractionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SSKInteractionHandler.h -------------------------------------------------------------------------------- /SSKInteractionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SSKInteractionHandler.m -------------------------------------------------------------------------------- /SSKMultiLineLabelNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SSKMultiLineLabelNode.h -------------------------------------------------------------------------------- /SSKMultiLineLabelNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SSKMultiLineLabelNode.m -------------------------------------------------------------------------------- /SSKMultiplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SSKMultiplatform.h -------------------------------------------------------------------------------- /SSKStretchableNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SSKStretchableNode.h -------------------------------------------------------------------------------- /SSKStretchableNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SSKStretchableNode.m -------------------------------------------------------------------------------- /SSKTileableNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SSKTileableNode.h -------------------------------------------------------------------------------- /SSKTileableNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SSKTileableNode.m -------------------------------------------------------------------------------- /SuperSpriteKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/SuperSpriteKit/HEAD/SuperSpriteKit.h --------------------------------------------------------------------------------