17 lines
435 B
C#
17 lines
435 B
C#
|
|
namespace OpenTheBox.Core.Crafting;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The lifecycle status of a crafting job.
|
||
|
|
/// </summary>
|
||
|
|
public enum CraftingJobStatus
|
||
|
|
{
|
||
|
|
/// <summary>The workstation is actively processing the recipe.</summary>
|
||
|
|
InProgress,
|
||
|
|
|
||
|
|
/// <summary>Processing is complete; the result is ready to be collected.</summary>
|
||
|
|
Completed,
|
||
|
|
|
||
|
|
/// <summary>The crafted item has been collected by the player.</summary>
|
||
|
|
Collected
|
||
|
|
}
|