mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
10 lines
387 B
C#
10 lines
387 B
C#
namespace MonoGame.Extended.NuclexGui.Visuals
|
|
{
|
|
/// <summary>Interface for an exchangeable GUI painter</summary>
|
|
public interface IGuiVisualizer
|
|
{
|
|
/// <summary>Renders an entire control tree starting at the provided control</summary>
|
|
/// <param name="screen">Screen containing the GUI that will be drawn</param>
|
|
void Draw(GuiScreen screen);
|
|
}
|
|
} |