recrownedgtk/RecrownedGTK.Tests/Graphics/Render/Shaders/ShaderTest.cs
Harrison 519d31f2e1 Another restructure with code updates.
Updated RectTextrue.cs, VertexInformation.cs, and IDrawable.cs to properly pass indice information.
2020-02-20 18:07:17 -05:00

20 lines
358 B
C#

using NUnit.Framework;
using RecrownedGTK.Graphics.Render.Shaders;
namespace RecrownedGTK.Tests
{
[TestFixture]
public class ShaderTest
{
Shader currentShader;
public void Setup()
{
}
[Test]
public void Test()
{
Assert.DoesNotThrow(Shader.CreateBasicShader);
}
}
}