package com.secondworld.sdk;
|
|
import com.ald.sdk.AldGameManger;
|
import com.ald.sdk.AldSPApplication;
|
|
public class GTGameApp extends AldSPApplication {
|
|
@Override
|
public void onCreate() {
|
super.onCreate();
|
GameAppProxy.create(this,new GTGamePlatform());
|
registerProxy();
|
AldGameManger.getInstance().applicationOnCreate(this);
|
}
|
|
protected void registerProxy() {
|
//主界面代理注册
|
GameActivity.registerProxy(GTGameMain.class);
|
|
}
|
|
|
|
|
}
|