flash on 2012-1-24
/**
* Copyright Karies ( http://wonderfl.net/user/Karies )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/kul1
*/
package {
import org.flixel.*;
[SWF(width="640", height="480", backgroundColor="#ABCC7D")]
public class Game extends FlxGame {
public function Game() : void
{
super(640,480,PlayState, 1);
}
}
}
import org.flixel.*;
class PlayState extends FlxState
{
override public function create():void
{
var text:FlxText = new FlxText(50, 50, 80, "Hello there");
add(text);
}
}