//Returns a boolean to check whether or not the end condition is reached.
    public bool endCondition(int scenario)
    {
        EndCondition end = new EndCondition();

        return(end.EndGame(scenario, this));
    }