AcademyRPG.MovingObject.GoTo C# (CSharp) Method

GoTo() public method

public GoTo ( Point destination ) : void
destination Point
return void
        public void GoTo(Point destination)
        {
            this.Position = destination;
        }
    }