using DaggerFramework.Rendering; namespace DaggerFramework.SceneGraph { public interface IDrawable { public void Draw(Renderer renderer); } }