// Copyright (C) 2020 Jérôme Leclercq // This file is part of the "Nazara Engine - Core module" // For conditions of distribution and use, see copyright notice in Config.hpp #include #include #include #include #include #include #include #include namespace Nz { /*! * \ingroup core * \class Nz::Core * \brief Core class that represents the Core module */ Core::Core(Config /*config*/) : ModuleBase("Core", this, ModuleBase::NoLog{}) { Log::Initialize(); LogInit(); } Core::~Core() { HardwareInfo::Uninitialize(); Log::Uninitialize(); PluginManager::Uninitialize(); TaskScheduler::Uninitialize(); } Core* Core::s_instance = nullptr; }