(Drawable) Made destructor virtual

Former-commit-id: ab35592cf015a3056de5d533b29d3c469cb29d29
This commit is contained in:
Lynix
2015-01-25 16:34:34 +01:00
parent bc6dd44009
commit 4a2f386c80

View File

@@ -13,7 +13,7 @@ class NAZARA_API NzDrawable
{
public:
NzDrawable() = default;
~NzDrawable();
virtual ~NzDrawable();
virtual void Draw() const = 0;
};