1
0
mirror of synced 2024-11-28 01:10:51 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/ModelData/IMeshContainer.cs

14 lines
244 B
C#
Raw Permalink Normal View History

2019-07-24 21:10:05 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
{
public interface IMeshContainer
{
List<STGenericObject> Meshes { get; }
}
}