flash on 2010-10-20
♥0 |
Line 13 |
Modified 2010-10-20 07:29:52 |
MIT License
archived:2017-03-20 08:50:32
ActionScript3 source code
/**
* Copyright partlyhuman ( http://wonderfl.net/user/partlyhuman )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/tyHk
*/
package {
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
var a:A = new A();
trace(a.prototype);
}
}
}
import flash.events.EventDispatcher;
class A extends EventDispatcher
{
}