mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
9 lines
311 B
C#
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;
|
|
}
|
|
} |