Beispiel #1
0
 public static void Scoreboard(Tournament t)
 {
     t.Matches.ForEach (UI.Scoreboard);
 }
Beispiel #2
0
        static void Main(string[] args)
        {
            Tournament t = new Tournament();

            t.Start();
        }
Beispiel #3
0
        public static void StartTournament()
        {
            Tournament Tournament = new Tournament("", 0, 32);

            Tournament.StartTournament();
        }
Beispiel #4
0
 static void Main(string[] args)
 {
     Tournament t = new Tournament ();
     t.Start ();
 }