Guest User

Untitled

a guest
Jun 23rd, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package  
  2. {
  3.     /**
  4.      * ...
  5.      * @author YetiGames
  6.      */
  7.     import org.flixel.*;
  8.    
  9.     public class Player extends FlxSprite
  10.     {
  11.            
  12.         public function Player(X:Number, Y:Number, color:uint)
  13.         {
  14.             super(X, Y);
  15.             makeGraphic(15, 15, color);
  16.         }
  17.        
  18.         override public function update():void
  19.         {
  20.             super.update();
  21.         }
  22.        
  23.     }
  24.  
  25. }
Add Comment
Please, Sign In to add comment