20 lines
490 B
Java
20 lines
490 B
Java
package com.gh.gamecenter;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
import com.gh.gamecenter.common.base.activity.ToolBarActivity;
|
|
import com.halo.assistant.fragment.user.SelectRegionFragment;
|
|
|
|
/**
|
|
* Created by khy on 25/09/17.
|
|
* 选择地区
|
|
*/
|
|
public class UserRegionActivity extends ToolBarActivity {
|
|
|
|
public static Intent getIntent(Context context) {
|
|
return getTargetIntent(context, UserRegionActivity.class, SelectRegionFragment.class);
|
|
}
|
|
|
|
}
|