2025-06-23 11:42:47 -07:00

19 lines
430 B
C#

using AssetRipper.Assets;
using AssetRipper.Assets.Collections;
namespace AssetRipper.Export.UnityProjects;
public interface IExportContainer
{
long GetExportID(IUnityObjectBase asset);
AssetType ToExportType(Type type);
MetaPtr CreateExportPointer(IUnityObjectBase asset);
UnityGuid ScenePathToGUID(string name);
bool IsSceneDuplicate(int sceneID);
AssetCollection File { get; }
UnityVersion ExportVersion { get; }
}