PalacePal/Pal.Client/Configuration/EMode.cs

15 lines
291 B
C#
Raw Normal View History

2023-03-30 20:01:43 +00:00
namespace Pal.Client.Configuration;
public enum EMode
2023-02-15 01:38:04 +00:00
{
2023-03-30 20:01:43 +00:00
/// <summary>
/// Fetches trap locations from remote server.
/// </summary>
Online = 1,
2023-02-15 01:38:04 +00:00
2023-03-30 20:01:43 +00:00
/// <summary>
/// Only shows traps found by yourself using a pomander of sight.
/// </summary>
Offline = 2,
2023-02-15 01:38:04 +00:00
}