コード例 #1
0
        public BotInfo Info()
        {
            var bot = new BotInfo()
            {
                Name = "Wiesiek",
                AvatarUrl = "http://localhost:53886/Content/BotImg.png",
                GameType = "TicTacToe"
            };
            bot.Description = "Hi, I am " + bot.Name + " and I would like to win this tournament.... haha haha haha.";

            return bot;
        }
コード例 #2
0
        public virtual BotInfo Info()
        {
            var bot = new BotInfo
            {
                Name = Name,
                AvatarUrl = "http://localhost:53886/Content/BotImg.png",
                GameType = "TankBlaster"
            };
            bot.Description = "Hi, I am " + bot.Name + " and I would like to win this tournament.... haha haha haha.";

            return bot;
        }
        public virtual BotInfo Info()
        {
            var bot = new BotInfo
            {
                Name = Name,
                AvatarUrl = AvatarUrl,
                GameType = "TankBlaster"
            };
            bot.Description = "Hi, I am " + bot.Name + " and I would like to win this tournament.... haha haha haha.";

            return bot;
        }