public class Gunfight {
    public static void main(String arguments[]) {

        WesternTown sweatyPost = new WesternTown(); 
        sweatyPost.saloons = 2; 
        sweatyPost.sheriffs = 1; 
        sweatyPost.troublemakers = 5; 

        Villain maurice = new Villain(); 
        maurice.hatColor = "black"; 
        maurice.mustacheColor = "red"; 
        maurice.sex = "Male"; 
        maurice.horseName = "Beer Gut"; 
        maurice.whiskeyPreference = "Jack Daniels";

        Humans mary = new Humans(); 
        mary.sex = "female"; 
        mary.horseName = "Midnight"; 
        mary.whiskeyPreference = "Straight"; 
        mary.name = "Mary"; 

        maurice.drinkWhiskey(); 
        System.out.println(maurice.howDrunkAmI()); 
        maurice.tieUpDamsel(mary); 
    } 
} 
