Esempio n. 1
0
        public override void Execute(Game game, TileExecution execution)
        {
            if (execution == TileExecution.ExpressConveyer)
            {
                Convey(RobotOnTile(game));
            }

            base.Execute(game, execution);
        }
Esempio n. 2
0
        public override void Execute(Game game, TileExecution execution)
        {
            if (execution == TileExecution.Wrench)
            {
                // TODO: DEAL OPTION CARD
            }

            base.Execute(game, execution);
        }
Esempio n. 3
0
File: Floor.cs Progetto: 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
            }
        }