lab 5 part 1 done

This commit is contained in:
2022-05-02 22:07:53 -05:00
parent bf5490504c
commit e381f5d7ca
7 changed files with 69 additions and 44 deletions

View File

@@ -13,17 +13,10 @@
Shape::Shape(){
this->color = (uint32_t) 0x00FFFFFF;
}
Shape::Shape(const Shape& from){
this->color = from.color;
this->coords = from.coords;
}
Shape::Shape(const Shape& from){};
Shape::~Shape(){};
void Shape::draw(GraphicsContext *gc){}
void Shape::out(std::ostream& os, const Shape& rhs){}
Shape& Shape::operator=(const Shape& rhs){
return *this;
}