Last active
August 29, 2015 14:12
-
-
Save Seasons7/9deb786a62670b2e9444 to your computer and use it in GitHub Desktop.
SwiftSpriteSample01
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
class MainScene: CCNode { | |
override func onEnter() { | |
var sp = CCSprite(imageNamed: "iPhone.png") | |
self.addChild(sp) | |
sp.position = ccp(200,200) | |
super.onEnter() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment