package model;

import java.awt.*;

/**
 * Created by IntelliJ IDEA.
 * User: MACHIZAUD Andréa
 * Date: 27 sept. 2010
 * Time: 02:07:17
 */
public abstract class Clothe {
    protected Color color;
    protected Brand brand;

    protected Clothe(){
        color = Color.WHITE;
        brand = Brand.NONE;
    }

    protected Clothe(Brand b, Color c){
        color = c;
        brand = b;
    }

    public String toString(){
        return "[Color:"+color.toString()+", Brand:"+brand.toString()+"]";
    }
}
