1
0
mirror of synced 2024-12-11 15:25:59 +01:00
Switch-Toolbox/File_Format_Library/GUI/BCH/Material/IMaterialLoader.cs

14 lines
267 B
C#
Raw Normal View History

2020-01-15 02:59:06 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FirstPlugin.CtrLibrary.Forms
{
public interface IMaterialLoader
{
void LoadMaterial(H3DMaterialWrapper wrapper);
}
}