package eclass2.Main;


import java.util.Collection;

/**
 *
 * 
      A Drawing is composed of a color, thickness, and one of several shapes.
      It also contains a reference to the User who created it.
    * 
 * @author 
 * @version 
 *
 **/

public class Drawing {

     /** Default Constructor **/
     public Drawing() {

     }

     protected Point center;

     protected Rect bounds;

     protected Color col;

     protected boolean highlight;

     protected int thick;

        // BEGIN NESTED COMPONENTS

     protected Collection object;

        // END NESTED COMPONENTS

     protected User user;

}