18 lines
392 B
Java
18 lines
392 B
Java
package com.gh.gamecenter;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
import com.gh.gamecenter.info.ConcernFragment;
|
|
|
|
/**
|
|
* Created by khy on 10/04/18.
|
|
*/
|
|
|
|
public class ConcernInfoActivity extends NormalActivity {
|
|
|
|
public static Intent getIntent(Context context) {
|
|
return getTargetIntent(context, ConcernInfoActivity.class, ConcernFragment.class);
|
|
}
|
|
}
|