Basic rendering with camera controls are functional.

This commit is contained in:
2020-06-23 20:07:12 -05:00
parent 1c4ca6c97b
commit 6a19d1f5c7
58 changed files with 8386 additions and 2224 deletions

View File

@@ -0,0 +1,11 @@
using System;
using SlatedGameToolkit.Framework.Graphics.OpenGL;
namespace SlatedGameToolkit.Framework.Graphics.Render.Shaders
{
public interface IShadeable : IDisposable
{
GLContext GLContext {get;}
uint Handle { get; }
}
}