lwb
2020-12-02 79f06d344d88dda2fb467041ea47993d8aa8ec07
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.secondworld.demo;
 
import com.secondworld.sdk.GTGameApp;
import com.secondworld.sdk.GTGameMain;
 
public class MyApp extends GTGameApp {
 
    @Override
    public void onCreate() {
        isDemo=true;
        super.onCreate();
    }
 
    @Override
    protected void registerProxy() {
        super.registerProxy();
        //主界面代理注册
        MainActivity.registerProxy(GTGameMain.class);
    }
 
}