public Cookie(int weight, string shape, Colour c) { this.Weight = weight; this.Shape = shape; this.CLR = c; }
// constructors public Cookie() { this.Weight = 0; this.Shape = ""; this.CLR = null; }