Example #1
0
        static void Main(string[] args)
        {
            PartyPanel panel = new PartyPanel();

            new Thread(() => new Server(panel).Start()).Start();

            Application.Run(panel);
        }
Example #2
0
 public Server(PartyPanel panel)
 {
     this.panel = panel;
 }