hch
2024-04-03 2036c7b7b1e0dbb8af09552e20db53dff35c64e3
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);
    }
 
}