Ejemplo n.º 1
0
        public Pair GetMoveY()
        {
            Pair p = new Pair(this.x, this.y + 1);

            return(p);
        }
Ejemplo n.º 2
0
        public Pair GetMoveX()
        {
            Pair p = new Pair(this.x + 1, this.y);

            return(p);
        }