PalacePal/Pal.Client/Configuration/EMode.cs

16 lines
337 B
C#

namespace Pal.Client.Configuration
{
public enum EMode
{
/// <summary>
/// Fetches trap locations from remote server.
/// </summary>
Online = 1,
/// <summary>
/// Only shows traps found by yourself using a pomander of sight.
/// </summary>
Offline = 2,
}
}