26 lines
712 B
C#
Raw Normal View History

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")]
FullList = 3,
[Description("Total, Per Zone Total, bot list, with delayed spawns")]
2024-01-24 20:15:25 +00:00
DelayedSpawn = 4,
[Description("Total, Per Zone Total, bot list, delayed spawns and directions")]
Directions = 5
2024-01-12 14:08:58 +00:00
}
}