pdachess.Token.setmove C# (CSharp) Method

setmove() public method

public setmove ( int x, int y ) : void
x int
y int
return void
        public virtual void setmove(int x,int y)
        {
            po_x = x;
            po_y = y;
            if (initial == true) initial = false;
        }