1
0
Fork 0
spectre/source/Graphics/Renderable2D.cpp
2016-01-10 09:26:43 +01:00

15 lines
197 B
C++

#include <Spectre/Graphics/Renderable.h>
Renderable2D::Renderable2D()
{
}
Renderable2D::Renderable2D(const Vector2f& position) :
Transformable (position)
{
}
Renderable2D::~Renderable2D()
{
}