public class Level {

	// properties added for a level
	private int points;
	private boolean goalReached;
	
	//constructor added to instantiate objects of Level class
	// take two parameters - points and goalReached
	public Level(int p, boolean st)
	{
		points =p;
		goalReached = st;
	}
	
	public boolean goalReached()
	{
		return goalReached;
	}
	
	public int getPoints()
	{
		return points;
	}
}
