forked from: flash on 2010-3-18

by poplaryy forked from flash on 2010-3-18 (diff: 1)
♥0 | Line 10 | Modified 2010-03-18 14:08:53 | MIT License
play

ActionScript3 source code

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

// forked from poplaryy's flash on 2010-3-18
package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            this.graphics.beginFill(0x112233);
            this.graphics.drawRect(15,50,50,100);
            this.graphics.endFill();
        }
    }
}