import java.awt.*;
import java.util.*;

public class GENERIC_GRID{
    
  int col;
  int score, next;
  boolean gameOn = true;  

  GENERIC_GRID(){
    col = 0;
    score = 0;
  }

  public int getScore(){
    return score;
  }

  public boolean keepPlaying(){
    return gameOn;
  }

  public void endGame(){
    gameOn=false;
  }

}

