/// <summary>
 /// Initializes the LeapMotion object with the default controller, listener and data object
 /// </summary>
 public LeapMotion()
 {
     Data = new LeapMotionData();
     Listener = new LeapMotionListener(Data);
     Controller = new LeapMotionController();
 }
 public LeapMotionListener(LeapMotionData data)
 {
     _data = data;
 }