Created
April 10, 2015 09:41
-
-
Save kewp/6c6c67b53669429baad8 to your computer and use it in GitHub Desktop.
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
package; | |
import flixel.FlxSprite; | |
/** | |
* ... | |
* @author ... | |
*/ | |
class Player extends FlxSprite | |
{ | |
public function new(X:Float=0, Y:Float=0, ?SimpleGraphic:Dynamic) | |
{ | |
super(X, Y, ?SimpleGraphic); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment