Ejemplo n.º 1
0
        /// <summary>
        /// Create a new bot and add it to the list of bots.
        /// </summary>
        /// <param name="botLevel"></param>
        public void CreateBot(int botLevel)
        {
            var newBot = new TimerBot(botLevel);

            BotList.Add(newBot);
            //App.RoomManager.AddMemberToRoom(newBot.Alias);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Create a new bot and add it to the list of bots.
 /// </summary>
 /// <param name="botLevel"></param>
 public void CreateBot(int botLevel)
 {
     var newBot = new TimerBot(botLevel);
     BotList.Add(newBot);
     //App.RoomManager.AddMemberToRoom(newBot.Alias);
 }