Files
NazaraEngine/include/Nazara/Graphics/Drawable.hpp
Lynix 4a2f386c80 (Drawable) Made destructor virtual
Former-commit-id: ab35592cf015a3056de5d533b29d3c469cb29d29
2015-01-25 16:34:34 +01:00

22 lines
447 B
C++

// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Engine - Graphics module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once
#ifndef NAZARA_DRAWABLE_HPP
#define NAZARA_DRAWABLE_HPP
#include <Nazara/Prerequesites.hpp>
class NAZARA_API NzDrawable
{
public:
NzDrawable() = default;
virtual ~NzDrawable();
virtual void Draw() const = 0;
};
#endif // NAZARA_DRAWABLE_HPP