Fixed Background not having virtual destructor

Former-commit-id: 3d08b8f44cd661bea7f0e36dda74e7bad90f1f2a
This commit is contained in:
Lynix 2013-04-06 00:14:25 +02:00
parent 8c77d6e990
commit 67e409ff53
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class NAZARA_API NzBackground
{
public:
NzBackground() = default;
~NzBackground();
virtual ~NzBackground();
virtual void Draw(const NzScene* scene) const = 0;