
/** 
 Program:    Drama Class
 Purpose:    demonstrates a Class;
 @author     john@december.com
 @version    1.06f; 25 Sep 95
 */

class Drama{

   public static void main (String args[]) {

      System.out.println("Drama application...");

      Dialogue afternoon = new Dialogue (1, "back at the office", 
                           "Kyle", "Georgie");
      afternoon.header();
      afternoon.action();
      afternoon.cut();

      Action night = new Action (2, "city streets");
      night.header();
      night.action();
      night.cut();

   }
}
