示例#1
0
 public override void StartGame(IStartGameContext context)
 {
     this.PlayerMoney = new InternalPlayerMoney(context.StartMoney);
     base.StartGame(context);
 }
示例#2
0
文件: APlayer.cs 项目: aneopsy/Powker
 public virtual void StartGame(IStartGameContext context)
 {
 }
示例#3
0
 public virtual void StartGame(IStartGameContext context)
 {
     this.Player.StartGame(context);
 }
示例#4
0
 public void StartGame(IStartGameContext context)
 {
     this.player.StartGame(context);
 }
示例#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)
 {
 }