// Copyright (C) 2020 Jérôme Leclercq // This file is part of the "Nazara Engine - Utility module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_UTILITY_HPP #define NAZARA_UTILITY_HPP #include #include #include namespace Nz { class NAZARA_UTILITY_API Utility : public ModuleBase { friend ModuleBase; public: using Dependencies = TypeList; struct Config {}; Utility(Config /*config*/); ~Utility(); private: static Utility* s_instance; }; } #endif // NAZARA_UTILITY_HPP