2024-01-12 14:08:58 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CWX_DebuggingTool.Models
|
|
|
|
|
{
|
|
|
|
|
public enum BotMonitorMode
|
|
|
|
|
{
|
|
|
|
|
[Description("Disabled")]
|
|
|
|
|
None = 0,
|
|
|
|
|
[Description("Only Total")]
|
|
|
|
|
Total = 1,
|
|
|
|
|
[Description("Total and Per Zone Total")]
|
|
|
|
|
PerZoneTotal = 2,
|
|
|
|
|
[Description("Total, Per Zone Total, and Bot List")]
|
2024-01-12 14:33:05 +00:00
|
|
|
|
FullList = 3,
|
|
|
|
|
[Description("Total, Per Zone Total, bot list, with delayed spawns")]
|
|
|
|
|
DelayedSpawn = 4
|
2024-01-12 14:08:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|