20 lines
475 B
C++
20 lines
475 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
|
|
|
|
#include <Nazara/Graphics/Drawable.hpp>
|
|
#include <Nazara/Graphics/Debug.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
/*!
|
|
* \ingroup graphics
|
|
* \class Nz::Drawable
|
|
* \brief Graphics class that represents something drawable for our scene
|
|
*
|
|
* \remark This class is abstract
|
|
*/
|
|
|
|
Drawable::~Drawable() = default;
|
|
}
|