예제 #1
0
        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
            }
        }