예제 #1
0
파일: Figure.cs 프로젝트: stanislav7/Tetris
        public Figure_move move()
        {
            Figure_move fmove = new Figure_move(this);

            rotate();;
            fmove.changes(this.matrix);
            return(fmove);
        }
예제 #2
0
파일: Figure.cs 프로젝트: stanislav7/Tetris
        public Figure_move move(int x, int y)
        {
            Figure_move fmove = new Figure_move(this);

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