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