14 lines
200 B
C#
Raw Normal View History

2021-08-12 16:52:06 +01:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Generator.Models
{
public enum BotType
{
assault = 1,
pmcBot = 2,
marksman = 3
}
}