editor seems to almost working

This commit is contained in:
Tubix
2024-12-17 22:08:17 +00:00
parent 4b25ee98c5
commit 739e5b8b9d
324 changed files with 30253 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
package
{
import flash.events.Event;
import flash.events.EventDispatcher;
public class GlobalEventDispatcher
{
private static var eventDispatcher:EventDispatcher = new EventDispatcher();
public function GlobalEventDispatcher()
{
super();
}
public static function addListener(param1:String, param2:Function) : void
{
eventDispatcher.addEventListener(param1,param2);
}
public static function removeListener(param1:String, param2:Function) : void
{
eventDispatcher.removeEventListener(param1,param2);
}
public static function dispatch(param1:Event) : void
{
eventDispatcher.dispatchEvent(param1);
}
}
}