Пример #1
0
        public virtual void Prepare()
        {
            this.Label.Text = this.GetText();

            this.client      = new BiscaClient(addr, Values.GamePort);
            this.game        = new GameScene(client, this.parent);
            this.client.Game = game;

            this.client.Start();
        }
Пример #2
0
 public Player(GameScene s, BiscaClient cli)
 {
     this.game   = s;
     this.client = cli;
 }