コード例 #1
0
ファイル: ExpressConveyer.cs プロジェクト: wbish/wirk
        public override void Execute(Game game, TileExecution execution)
        {
            if (execution == TileExecution.ExpressConveyer)
            {
                Convey(RobotOnTile(game));
            }

            base.Execute(game, execution);
        }
コード例 #2
0
ファイル: WrenchHammer.cs プロジェクト: wbish/wirk
        public override void Execute(Game game, TileExecution execution)
        {
            if (execution == TileExecution.Wrench)
            {
                // TODO: DEAL OPTION CARD
            }

            base.Execute(game, execution);
        }
コード例 #3
0
ファイル: Floor.cs プロジェクト: wbish/wirk
        public virtual void Execute(Game game, TileExecution execution)
        {
            if (execution == TileExecution.Lasers)
            {
                // TODO: FIRE ZE MISILES!
            }

            if (execution == TileExecution.Pushers)
            {
                // TODO: ACTIVATE PUSHERS
            }
        }