public MainWindow() { InitializeComponent(); //ThreadStart t = new ThreadStart(connexionServeur); IvyComponent comp = IvyXMLParser.parseXML("test.xml"); if (comp == null) { return; } content.Children.Add(comp.getComponent()); Thread t = new Thread(new ThreadStart(delegate() { try { act = new TestActivity(4); act.connect(); act.waitForClients(); } catch (Exception e) { System.Windows.MessageBox.Show(e.StackTrace); } })); t.Start(); }
public Player(BaseActivity ba, int pIdx, IvySocket s) { act = ba; playerIndex = pIdx; sock = s; }