SDLU/src/graphics/drawable/shapes/Shape.cpp
2021-04-23 15:08:51 +02:00

23 lines
317 B
C++

#include <graphics/drawable/shapes/Shape.hpp>
namespace sdlu
{
Shape::~Shape()
{
}
void Shape::SetColor(const Color& color)
{
this->color = color;
}
Color Shape::GetColor()
{
return color;
}
Shape::Shape() :
Drawable(), Transformable()
{
}
}