Class LoadablesProgress
Represents the progress of the (loadables) loading process.
Namespace: AlchemyBow.Core
Assembly: AlchemyBow.Core.dll
Syntax
public sealed class LoadablesProgress
Constructors
LoadablesProgress(ICoreLoadable, int, bool, int)
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. |
| int | loadableIndex | The index of the current loadable. |
| bool | loadableCompleted | The status of the current loadable ( |
| int | 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 |
|---|---|
| bool |
loadableIndex
The index of the current loadable.
Declaration
public readonly int loadableIndex
Field Value
| Type | Description |
|---|---|
| int |
numberOfLoadables
The total number of loadables that are involved in the loading process.
Declaration
public readonly int numberOfLoadables
Field Value
| Type | Description |
|---|---|
| int |