/** * A class which is consulted by the FXStudio: * it helps advise *where* to draw things on the screen. * * @author ITEC 120 class, in unison. * @version 2007.Aug.20 */ class RocketScientist { /** Calculate The height of a UFO, at a given moment, for the opening * scene -- taking off from the secret base. * * @param f The frame number (0 is first frame; 24frames per second) * @return The y-coordinate for the ufo, at the desired frame. */ int ufoHeightAt(int frameNum) { return frameNum+102; } }