mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-23 17:24:52 +00:00
27 lines
394 B
ActionScript
27 lines
394 B
ActionScript
package
|
|
{
|
|
import flash.display.Sprite;
|
|
import flash.events.Event;
|
|
|
|
/**
|
|
* ...
|
|
* @author Jindra
|
|
*/
|
|
public class Main extends Sprite
|
|
{
|
|
|
|
public function Main()
|
|
{
|
|
if (stage) init();
|
|
else addEventListener(Event.ADDED_TO_STAGE, init);
|
|
}
|
|
|
|
private function init(e:Event = null):void
|
|
{
|
|
removeEventListener(Event.ADDED_TO_STAGE, init);
|
|
// entry point
|
|
}
|
|
|
|
}
|
|
|
|
} |