Class LoadablesProgress
Represents the progress of the (loadables) loading process.
Inheritance
System.Object
LoadablesProgress
Namespace: AlchemyBow.Core
Assembly: AlchemyBow.Core.dll
Syntax
public sealed class LoadablesProgress
Constructors
LoadablesProgress(ICoreLoadable, Int32, Boolean, Int32)
Creates an instance of the class.
Declaration
public LoadablesProgress(ICoreLoadable loadable, int loadableIndex, bool loadableCompleted, int numberOfLoadables)
Parameters
Type | Name | Description |
---|---|---|
ICoreLoadable | loadable | The current loadable. |
System.Int32 | loadableIndex | The index of the current loadable. |
System.Boolean | loadableCompleted | The status of the current loadable ( |
System.Int32 | numberOfLoadables | The total number of loadables that are involved in the loading process. |
Fields
loadable
The current loadable.
Declaration
public readonly ICoreLoadable loadable
Field Value
Type | Description |
---|---|
ICoreLoadable |
loadableCompleted
The status of the current loadable (true
if complete).
Declaration
public readonly bool loadableCompleted
Field Value
Type | Description |
---|---|
System.Boolean |
loadableIndex
The index of the current loadable.
Declaration
public readonly int loadableIndex
Field Value
Type | Description |
---|---|
System.Int32 |
numberOfLoadables
The total number of loadables that are involved in the loading process.
Declaration
public readonly int numberOfLoadables
Field Value
Type | Description |
---|---|
System.Int32 |