1
0
mirror of synced 2024-12-03 03:27:23 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/IMeshContainer.cs
2019-07-24 15:10:05 -04:00

14 lines
244 B
C#

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; }
}
}