public static void CreateBot(Vector3 position)
        {
            Bot bot = new Bot(0, (ulong)Bots.Count, position);

            bot.Spawn();

            Bots.Add(bot);

            AimTrain.SaveBots();
        }
 void CmdCreateBot(ConsoleSystem.Arg arg)
 {
     AimTrain.CreateBot(arg.Player().transform.position);
     PrintToChat("Where them bots at?");
 }
 void Loaded()
 {
     AimTrain.Instance = this;
     AimTrain.LoadBots();
 }