1
0
mirror of synced 2024-11-12 02:00:50 +01:00

Fix more errors

This commit is contained in:
KillzXGaming 2020-01-14 20:59:06 -05:00
parent 786f605177
commit 7b28819f26
2 changed files with 14 additions and 2 deletions

View File

@ -396,7 +396,7 @@
<Compile Include="FileFormats\Texture\BTI.cs" />
<Compile Include="FileFormats\Texture\WTB.cs" />
<Compile Include="GL\BCH_Render.cs" />
<Compile Include="GL\BFRESRender.cs" />
<Compile Include="GL\BFRES_Render.cs" />
<Compile Include="GL\BMD_Renderer.cs" />
<Compile Include="GL\CMB_Renderer.cs" />
<Compile Include="GL\GXToOpenGL.cs" />
@ -1392,7 +1392,6 @@
<Compile Include="FileFormats\Texture\XTX.cs" />
<Compile Include="FileFormats\Rom\XCI.cs" />
<Compile Include="GetSwitchKeys.cs" />
<Compile Include="GL\BFRES\BFRES_Render.cs" />
<Compile Include="GUI\Advanced Editor\TextureViewer.cs">
<SubType>UserControl</SubType>
</Compile>

View File

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