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