diff --git a/File_Format_Library/File_Format_Library.csproj b/File_Format_Library/File_Format_Library.csproj index 23d41c0e..2d92a466 100644 --- a/File_Format_Library/File_Format_Library.csproj +++ b/File_Format_Library/File_Format_Library.csproj @@ -396,7 +396,7 @@ - + @@ -1392,7 +1392,6 @@ - UserControl diff --git a/File_Format_Library/GUI/BCH/Material/IMaterialLoader.cs b/File_Format_Library/GUI/BCH/Material/IMaterialLoader.cs new file mode 100644 index 00000000..356a56b5 --- /dev/null +++ b/File_Format_Library/GUI/BCH/Material/IMaterialLoader.cs @@ -0,0 +1,13 @@ +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); + } +}