adding some overrides where it was missing

This commit is contained in:
Clément Le Bihan
2021-05-25 09:40:58 +02:00
parent 6fea6b8f83
commit ffa360edce
+2 -2
View File
@@ -32,10 +32,10 @@ namespace RAY::Drawables::Drawables2D {
ADrawable2D(const ADrawable2D &) = default;
//! @brief A default destructor
virtual ~ADrawable2D() = default;
~ADrawable2D() override = default;
//! @return the top-left position of the ADrawable
const Vector2 &getPosition(void) const;
const RAY::Vector2 &getPosition(void) const;
//! @return the color of the ADrawable
const RAY::Color &getColor(void) const;