15 lines
229 B
C++
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;
|
|
} |