mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
16 lines
338 B
ActionScript
16 lines
338 B
ActionScript
|
package{
|
||
|
import flash.display.Sprite;
|
||
|
import starling.core.Starling;
|
||
|
|
||
|
[SWF(backgroundColor="#000000", frameRate="30")]
|
||
|
public class Load extends Sprite{
|
||
|
private var _starling:Starling;
|
||
|
|
||
|
public function Load() {
|
||
|
Starling.multitouchEnabled = true;
|
||
|
|
||
|
_starling = new Starling(Main, stage);
|
||
|
_starling.start();
|
||
|
}
|
||
|
}
|
||
|
}
|