Ejemplo n.º 1
0
        public static void Action(int rowIndex, int colIndex)
        {
            char ch = Map.Data[rowIndex, colIndex];

            if (ch == Bonus.Char)
            {
                Bonus.Active();
            }
            else if (ch == Trap.Char)
            {
                Trap.Active();
            }
            else if (ch == Points.Char)
            {
                Points.Get();
            }
            else
            {
                Mine.Verification(rowIndex, colIndex);
            }
        }