// Allison Obourn
// CS 142, Spring 2024
// Lecture 29

// The controller for the tip calculator program. 
// Opens up a tip calculator GUI allowing the user to 
// type in the cost of a meal, click a button representing
// a particular tip amount and then see the resulting 
// overall price on the GUI window.

import javax.swing.*;
import java.awt.*;
import java.awt.event.*; 

public class TipCalculator {
   public static void main(String[] args) {
      TipGUI gui = new TipGUI();
   }
}
