This commit is contained in:
SirLynix
2022-12-06 20:10:10 +01:00
committed by Jérôme Leclercq
parent b379518479
commit 292ca60592
34 changed files with 1995 additions and 60 deletions

View File

@@ -939,6 +939,15 @@ namespace
};
}
#ifdef NAZARA_PLUGINS_STATIC
namespace Nz
{
std::unique_ptr<AssimpPlugin> PluginProvider<AssimpPlugin>::Instantiate()
{
return std::make_unique<AssimpPluginImpl>();
}
}
#else
extern "C"
{
NAZARA_EXPORT Nz::PluginInterface* PluginLoad()
@@ -954,3 +963,4 @@ extern "C"
return plugin.release();
}
}
#endif