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;
};

View File

@ -0,0 +1,8 @@
// Copyright (C) 2013 Jérôme Leclercq
// This file is part of the "Nazara Engine - 2D Module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/2D/Drawable.hpp>
#include <Nazara/2D/Debug.hpp>
NzDrawable::~NzDrawable() = default;