hch
2024-09-11 ffbec89f77b488e5e9ec63c124705c33eb8cf1dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.secondworld.sdk;
 
import android.app.Application;
 
public class TestApp extends Application {
 
    @Override
    public void onCreate() {
        super.onCreate();
        GameAppProxy.create(this,new TestPlatform());
        GameActivity.registerProxy(GameActivityProxy.class);
    }
 
}