using System.Collections.Generic; using OpenTK; using SM.Base.Contexts; namespace SM.Base.Scene { /// /// A general interface to work with material shaders properly. /// public interface IShader { /// /// Draws the context. /// /// The context void Draw(DrawContext context); } }