mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-26 11:19:10 +00:00
10 lines
179 B
C#
10 lines
179 B
C#
|
namespace FSO.Server.Common
|
|||
|
{
|
|||
|
public enum ShutdownType : byte
|
|||
|
{
|
|||
|
SHUTDOWN = 0,
|
|||
|
RESTART = 1,
|
|||
|
UPDATE = 2 //restart but runs an update task
|
|||
|
}
|
|||
|
}
|