mirror of
https://github.com/Cardidi/ca2d-unity-toolkit.git
synced 2025-12-20 01:06:03 +08:00
17 lines
238 B
C#
17 lines
238 B
C#
namespace Ca2d.Toolkit.Bootable
|
|
{
|
|
public enum BootState
|
|
{
|
|
Created = 0,
|
|
|
|
Pending = 1,
|
|
|
|
Prepare = 2,
|
|
|
|
Running = 3,
|
|
|
|
Exit = 4,
|
|
|
|
Fatal = 5
|
|
}
|
|
} |