public class WesternTown {   
    int stables;    
    int saloons;    
    int sheriffs;   
    int troublemakers;      
    String location;        
    int time;
                             
                             
    public WesternTown() {    
        stables = 3;    
        location = "Western America";
        time = 1850;
    }
}
