renamed new as3 test swfs to have as3 prefix and unique SWF name

This commit is contained in:
Jindra Petřík
2021-02-03 07:07:22 +01:00
parent 347648c77e
commit 26b51d2e95
191 changed files with 69 additions and 68 deletions

View File

@@ -0,0 +1,29 @@
package
{
import flash.display.Sprite;
import flash.events.Event;
import tests.*;
/**
* ...
* @author JPEXS
*/
public class Main extends Sprite
{
TestDupAssignment;
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
}
}
}

View File

@@ -0,0 +1,13 @@
package tests
{
public class TestDupAssignment
{
public function run() : void
{
//TODO: replace this using RABCDasm
}
}
}