Files
MonoGame.Extended/Source/MonoGame.Extended.NuclexGui/Controls/GuiProgressControl.cs
T

9 lines
311 B
C#

namespace MonoGame.Extended.NuclexGui.Controls
{
/// <summary>Visual indicator for the progress of some operation</summary>
public class GuiProgressControl : GuiControl
{
/// <summary>The displayed progress in the range between 0.0 and 1.0</summary>
public float Progress;
}
}