25 lines
647 B
Java
25 lines
647 B
Java
package com.gh.gamecenter;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.support.annotation.NonNull;
|
|
|
|
import com.gh.common.util.EntranceUtils;
|
|
import com.gh.gamecenter.kaifu.KaiFuWrapperFragment;
|
|
|
|
/**
|
|
* Created by khy on 18/08/17.
|
|
*/
|
|
@Deprecated
|
|
public class KaiFuActivity extends NormalActivity {
|
|
|
|
@NonNull
|
|
public static Intent getIntent(Context context, String entrance) {
|
|
Bundle args = new Bundle();
|
|
args.putString(EntranceUtils.KEY_ENTRANCE, entrance);
|
|
return getTargetIntent(context, KaiFuActivity.class, KaiFuWrapperFragment.class, args);
|
|
}
|
|
|
|
}
|