package com.phoneu.cocos;

import com.phoneu.proxy.bridge.ActivityBase;
import com.phoneu.proxy.bridge.AppBase;

public class MyApp extends AppBase {
    @Override
    protected void onAppEnterForeground() {

    }

    @Override
    protected void onAppEnterBackground() {

    }

    @Override
    protected void callGame(String action, int code, Object msg) {
        ActivityBase.nativeCallGame(action, code, msg);
    }
}
