Interface IProgressable
An interface used to indicate progress of operation.
Namespace: IdleKit.Core
Assembly: cs.temp.dll.dll
Syntax
public interface IProgressable
Properties
NormalizedProgress
Returns the normalized (0 - 1) progress through this IProgressable.
Declaration
float NormalizedProgress { get; }
Property Value
Type | Description |
---|---|
Single |
Events
OnProgress
Broadcast when the IProgressable progresses.
Declaration
event Action<IProgressable, float> OnProgress
Event Type
Type | Description |
---|---|
Action<IProgressable, Single> |