14 lines
200 B
C#
14 lines
200 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Generator.Models
|
|
{
|
|
public enum BotType
|
|
{
|
|
assault = 1,
|
|
pmcBot = 2,
|
|
marksman = 3
|
|
}
|
|
}
|