Files
CS3210/Lab5/shape.cpp
2022-04-12 19:07:41 -05:00

15 lines
229 B
C++

/**
* @file shape.cpp
* @author your name (you@domain.com)
* @brief
* @version 0.1
* @date 2022-04-12
*
* @copyright Copyright (c) 2022
*
*/
#include "shape.h"
Shape::Shape(){
this->RGB = (uint32_t) 0x00FFFFFF;
}