mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
8 lines
222 B
C#
8 lines
222 B
C#
namespace AssetStudio
|
|
{
|
|
public static class ModelExporter
|
|
{
|
|
public static void ExportFbx(string path, IImported imported, Fbx.Settings settings) => Fbx.Exporter.Export(path, imported, settings);
|
|
}
|
|
}
|