Beispiel #1
0
        static void Main(string[] args)
        {
            Credentials fluzzarn = new Credentials();

            if (args.Length > 0)
            {
                if (args[0] != "")
                {
                    fluzzarn.ChannelName = args[0];
                }
            }


            FluzzBot bot = new FluzzBot(fluzzarn);

            bot.Start();
        }
Beispiel #2
0
 public JustDanceSetlist(FluzzBot b)
 {
     bot = b;
 }
Beispiel #3
0
 public Setlist(FluzzBot b)
 {
     bot         = b;
     SongSetlist = new List <Song>();
 }