Пример #1
0
        public Figure_move move()
        {
            Figure_move fmove = new Figure_move(this);

            rotate();;
            fmove.changes(this.matrix);
            return(fmove);
        }
Пример #2
0
        public Figure_move move(int x, int y)
        {
            Figure_move fmove = new Figure_move(this);

            shift(x, y);
            fmove.changes(this.coordinates);
            return(fmove);
        }