All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.semoncat.geach.core.GeachGame Maven / Gradle / Ivy

There is a newer version: 0.9.4
Show newest version
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