import becker.io.*;
import java.util.Random;

public class GuessingGame extends Object
{
	// List any instance variables here:
	Random randomNumberGenerator;
	TextInput keyboard = new TextInput();
	
	
	public GuessingGame()
	{
		randomNumberGenerator = new Random();

		// Any other 'initial' work that you need to do goes here
	}

	// If you need to get a number for the user to guess (randomly),
	// call this method & it'll get you one.
	// The number may be as low as 0, and as high as 15
	// (This will be 16 separate numbers that the user might try to guess)
	public int GetRandomNumber()
	{
		return randomNumberGenerator.nextInt(16); 
	}
	
	
	public boolean PlayGuessingGame()
	{
		
		return false;
	}
	
}
