public Screen(int xRes, yRes)

needs to be:

public Screen(int xRes, int YRes)

Why are you declaring these global variables as private int above?
They are in a different scope than the...