1
0
mirror of synced 2024-12-12 15:51:16 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/ModelData/IExportableModel.cs
2020-02-08 10:28:18 -05:00

17 lines
386 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
{
public interface IExportableModel
{
List<STGenericObject> Meshes { get; }
List<STGenericMaterial> Materials { get; }
STSkeleton Skeleton { get; }
List<STGenericTexture> TextureList { get; }
}
}