mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-26 14:30:26 +00:00
16 lines
444 B
C#
16 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Toolbox.Library
|
|
{
|
|
public interface IExportableModel
|
|
{
|
|
IEnumerable<STGenericObject> ExportableMeshes { get; }
|
|
IEnumerable<STGenericMaterial> ExportableMaterials { get; }
|
|
IEnumerable<STGenericTexture> ExportableTextures { get; }
|
|
STSkeleton ExportableSkeleton { get; }
|
|
}
|
|
}
|