Esempio n. 1
0
 public override void StartGame(IStartGameContext context)
 {
     this.PlayerMoney = new InternalPlayerMoney(context.StartMoney);
     base.StartGame(context);
 }
Esempio n. 2
0
 public virtual void StartGame(IStartGameContext context)
 {
 }
Esempio n. 3
0
 public virtual void StartGame(IStartGameContext context)
 {
     this.Player.StartGame(context);
 }
Esempio n. 4
0
 public void StartGame(IStartGameContext context)
 {
     this.player.StartGame(context);
 }
Esempio n. 5
0
        public override void StartGame(IStartGameContext context)
        {
            base.StartGame(context);

            this.reaction = new NeuralNetwork.Reaction(context);
        }
 public Reaction(IStartGameContext context)
     : base(context.PlayerNames.Count)
 {
 }