mysimulation/server/FSO.Server.Common/ShutdownType.cs

10 lines
179 B
C#
Raw Normal View History

namespace FSO.Server.Common
{
public enum ShutdownType : byte
{
SHUTDOWN = 0,
RESTART = 1,
UPDATE = 2 //restart but runs an update task
}
}