Ejemplo n.º 1
0
        /// <summary>
        /// Move to the given location.
        /// </summary>
        public void DragMove(float x, float y)
        {
            if (!initialized)
            {
                return;
            }

            if (trans.MoveUpdate(x, y))
            {
                this.Render();
            }
        }