SDLU/src/graphics/drawable/shapes/Shape.cpp

23 lines
317 B
C++
Raw Normal View History

2021-04-23 13:08:51 +00:00
#include <graphics/drawable/shapes/Shape.hpp>
2020-05-23 14:13:41 +00:00
namespace sdlu
{
Shape::~Shape()
{
}
void Shape::SetColor(const Color& color)
{
this->color = color;
}
Color Shape::GetColor()
{
return color;
}
Shape::Shape() :
Drawable(), Transformable()
{
}
}