forked from: Alternativa3D next one
forked from Alternativa3D next one (diff: 654)
Alternativa3D を簡単に扱うためのベーシックテンプレート @author Yasu (clockmaker)
ActionScript3 source code
/**
* Copyright wataru.o1o8 ( http://wonderfl.net/user/wataru.o1o8 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/5iPM
*/
package {
import flash.display.Sprite;
import flash.text.TextField;
public class HelloWorld extends Sprite {
public function HelloWorld() {
var tf :TextField = new TextField;
tf.text = "Hello, world!";
addChild( tf );
}
}
}
