package com.bitrazor.tivo.trafficcam;

import com.tivo.hme.bananas.BApplication;

public class SetupScreen extends ScreenTemplate {
	public SetupScreen(BApplication app) {
	    super(app);
		
        TextItemList list  = new TextItemList(getNormal(), SAFE_TITLE_H, 225, 400, 200, 40);
        list.add("Choose Region");
        list.add("Change Camera Rotation Time");
        setFocusDefault(list);
	}
	
    public String toString() 
    {
        return "TrafficCam Setup";
    }

}

