// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Editor
{
///
/// Used by to send information about the current progress.
///
public class UxrProgressInfo
{
#region Public Types & Data
///
/// Title of the current progress
///
public string Title { get; }
///
/// Current information of the current progress
///
public string Info { get; }
///
/// Current progress in [0.0, 1.0] range
///
public float Progress { get; }
#endregion
#region Constructors & Finalizer
///
/// Constructor.
///
/// Progress title
/// Progress info
/// Progress [0.0, 1.0]
public UxrProgressInfo(string title, string info, float progress)
{
Title = title;
Info = info;
Progress = progress;
}
#endregion
}
}