/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package eleph.android.games.gamin;

import android.app.Application;
import eleph.android.games.gamin.model.GaminModel;

/**
 *
 * @author eleph
 */
public class TheApplication extends Application {
  
  GaminModel theGame;
  
  @Override
  public void onCreate() {
    super.onCreate();
    theGame = new GaminModel();
  }
  
  GaminModel getGame() {
    return theGame;
  }
  
}
