Fixed Drawable destructor

Former-commit-id: 01ff3c3c86dc0bd3f25b51384b0751d3767aa9ba
This commit is contained in:
Lynix
2013-03-21 22:55:16 +01:00
parent 23b760139e
commit ce63985b0e
2 changed files with 11 additions and 0 deletions

View File

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