flash on 2010-2-14

by hacker_yk666qry
♥0 | Line 11 | Modified 2010-02-14 09:03:43 | MIT License
play

ActionScript3 source code

/**
 * Copyright hacker_yk666qry ( http://wonderfl.net/user/hacker_yk666qry )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/nmnz
 */

papackage{
	import com.bit101.components.Label;
	import flash.display.Sprite;
	/**
	 * ...
	 * @author ouow
	 */
	public class Bit01_label extends Sprite{
		private var label:Label;
		
		public function Bit01_label() {
			label = new Label(this, 0, 0, "Ikaruga");
			addChild(label);
		}
		
	}

}