Add graphics module base

This commit is contained in:
Jérôme Leclercq
2020-09-20 14:52:44 +02:00
parent e9f3e39194
commit 95c9ad0fd8
9 changed files with 209 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
// Copyright (C) 2020 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/Graphics.hpp>
#include <Nazara/Graphics/Debug.hpp>
namespace Nz
{
/*!
* \ingroup graphics
* \class Nz::Graphics
* \brief Audio class that represents the module initializer of Graphics
*/
Graphics::Graphics(Config /*config*/) :
ModuleBase("Graphics", this)
{
}
Graphics::~Graphics()
{
}
Graphics* Graphics::s_instance = nullptr;
}