Code/IterationType.cs
namespace BetterUI;

/// <summary>
/// Specifies the iteration behavior for the BounceComponent.
/// </summary>
public enum IterationType
{
	/// <summary>
	/// The animation will run only once.
	/// </summary>
	Once,

	/// <summary>
	/// The animation will loop indefinitely.
	/// </summary>
	Loop,

	/// <summary>
	/// The animation will run a specified number of times manually.
	/// </summary>
	Manual
}