package Texas;

public class WesternTown {
  int stables ;
  int sheriffs ;
  int saloons ;
  int troublemakers ;
  String location ;
  int time ;

  public WesternTown() {
    stables = 3 ;
    location = "Texas" ;
    time = 1901 ;
    saloons = 1 ;
  }
  public void setSaloons(int saloons) {
    this.saloons=saloons;
  }
  public void setTroubleMakers(int tMaker) {
    troublemakers=tMaker;
  }
  public void setSheriffs(int sheriffs) {
    this.sheriffs=sheriffs;
  }
}