コード例 #1
0
ファイル: Program.cs プロジェクト: MatrikMoon/PartyPanel
        static void Main(string[] args)
        {
            PartyPanel panel = new PartyPanel();

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

            Application.Run(panel);
        }
コード例 #2
0
ファイル: Server.cs プロジェクト: MatrikMoon/PartyPanel
 public Server(PartyPanel panel)
 {
     this.panel = panel;
 }