namespace SM.OGL.Shaders { /// /// Uniform interface /// public interface IUniform { /// /// Location of the uniforms /// int Location { get; } } }