protected void onScreenRotationChanged(AndroidScreenRotation newOrientation)
 {
     if (m_onScreenOrientationChangedEvent != null)
     {
         m_onScreenOrientationChangedEvent(newOrientation);
     }
 }
 protected void onScreenRotationChanged(AndroidScreenRotation newOrientation)
 {
     if (m_onScreenOrientationChangedEvent != null)
     {
         m_onScreenOrientationChangedEvent(newOrientation);
     }
 }
 /// <summary>
 /// Delegate for the Android screen orientation changed.
 /// </summary>
 /// <param name="newOrientation">The index of new orientation.</param>
 private void _androidOnScreenOrientationChanged(AndroidScreenRotation newOrientation)
 {
     m_screenOrientationChanged = true;
 }