mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-23 10:11:23 +08:00
18 lines
323 B
ActionScript
18 lines
323 B
ActionScript
|
|
package {
|
|
|
|
import flash.display.Sprite;
|
|
import starling.core.Starling;
|
|
|
|
[SWF(width = "640", height = "480", frameRate = "60", backgroundColor = "#dddddd")]
|
|
public class Main extends Sprite {
|
|
private var _starling:Starling;
|
|
|
|
public function Main () {
|
|
_starling = new Starling(Game, stage);
|
|
_starling.start();
|
|
}
|
|
}
|
|
|
|
}
|