Kinect.Pong.Models.Paddle.Move C# (CSharp) Method

Move() public method

public Move ( ) : void
return void
        public void Move()
        {
            if (IsComputerControlled) ComputerTracking();
            if ((Position.Y + Height + _yVelocity) < Boundry.Height && Position.Y + _yVelocity > 0)
            {
                Position = new Point(Position.X, Position.Y + _yVelocity);
            }
        }