13 lines
221 B
C#
13 lines
221 B
C#
namespace ShrinkModFramework
|
|
{
|
|
public enum ShrinkModState
|
|
{
|
|
Discovered = 0,
|
|
Constructed = 1,
|
|
ContentRegistered = 2,
|
|
Initialized = 3,
|
|
Ready = 4,
|
|
Unloaded = 5
|
|
}
|
|
}
|