27 lines
631 B
C#
27 lines
631 B
C#
namespace Generator.Models
|
|
{
|
|
public enum BotType
|
|
{
|
|
assault = 1,
|
|
pmcBot = 2,
|
|
marksman = 3,
|
|
bossbully = 4,
|
|
bossgluhar = 5,
|
|
bosskilla = 6,
|
|
bosskojaniy = 7,
|
|
bosssanitar = 8,
|
|
bossstormtrooper = 9,
|
|
followerbully = 10,
|
|
followergluharassault = 11,
|
|
followergluharscout = 12,
|
|
followergluharsecurity = 13,
|
|
followergluharsnipe = 14,
|
|
followerkojaniy = 15,
|
|
followersanitar = 16,
|
|
followerstormtrooper = 17,
|
|
cursedassault = 18,
|
|
sectantpriest = 19,
|
|
sectantwarrior = 20
|
|
}
|
|
}
|