-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFASTFramwork.as
36 lines (35 loc) · 965 Bytes
/
FASTFramwork.as
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package {
import com.fastframework.core.AS2;
import com.fastframework.core.FASTEventDispatcher;
import com.fastframework.core.FASTSpriteEventDispatcher;
import com.fastframework.core.IFASTEventDispatcher;
import com.fastframework.core.SingletonError;
import com.fastframework.log.FASTLog;
import com.fastframework.log.ILog;
import com.fastframework.navigation.NavStackRequest;
import com.fastframework.navigation.Navigation;
import com.fastframework.navigation.NavigationEvent;
import com.fastframework.net.ILoadParser;
import com.fastframework.net.ILoader;
/**
* @author colin
*/
final public class FASTFramwork {
public static const VERSION:String = '4.1';
public function FASTFramwork(){
AS2;
//EventDispatcherUtils;
FASTEventDispatcher;
FASTSpriteEventDispatcher;
IFASTEventDispatcher;
SingletonError;
FASTLog;
ILog;
Navigation;
NavigationEvent;
NavStackRequest;
ILoader;
ILoadParser;
}
}
}