Created
December 30, 2014 21:25
-
-
Save Seasons7/3bb6168d9c6655b07902 to your computer and use it in GitHub Desktop.
ccswift20150101
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() { | |
self.userInteractionEnabled = true | |
super.onEnter() | |
} | |
override func touchBegan(touch: CCTouch!, withEvent event: CCTouchEvent!) { | |
println("touch!!") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment