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