Files
CS3210/Lab5/shape.cpp
2022-05-02 22:07:53 -05:00

23 lines
358 B
C++

/**
* @file shape.cpp
* @author Trevor Barnes (barnestr@msoe.edu)
* @brief
* @version 1.0
* @date 2022-04-12
*
* @copyright Copyright (c) 2022
*
*/
#include "shape.h"
Shape::Shape(){
this->color = (uint32_t) 0x00FFFFFF;
}
Shape::Shape(const Shape& from){};
Shape::~Shape(){};
Shape& Shape::operator=(const Shape& rhs){
return *this;
}