com.semoncat.geach.core.GeachGame Maven / Gradle / Ivy
package com.semoncat.geach.core;
import android.app.IntentService;
import android.content.Context;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.util.Log;
/**
* Created by SemonCat on 2014/7/2.
*/
public abstract class GeachGame extends IntentService{
private static final String TAG = GeachGame.class.getName();
public static final String ACTION_Geach_Game
= "com.thu.semoncat.GeachGame";
public GeachGame(String name) {
super(name);
}
public abstract BaseGameFragment getGameFragment(Context packageContext);
@Override
protected void onHandleIntent(Intent intent) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy