namespace MonoGame.Extended.NuclexGui.Visuals
{
/// Interface for an exchangeable GUI painter
public interface IGuiVisualizer
{
/// Renders an entire control tree starting at the provided control
/// Screen containing the GUI that will be drawn
void Draw(GuiScreen screen);
}
}