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