// Token: 0x06004BD1 RID: 19409 RVA: 0x00128268 File Offset: 0x00126468
    public static global::TweenRotation Begin(GameObject go, float duration, Quaternion rot)
    {
        global::TweenRotation tweenRotation = global::UITweener.Begin <global::TweenRotation>(go, duration);

        tweenRotation.from = tweenRotation.rotation.eulerAngles;
        tweenRotation.to   = rot.eulerAngles;
        return(tweenRotation);
    }
 // Token: 0x06004941 RID: 18753 RVA: 0x00117768 File Offset: 0x00115968
 private void OnDisable()
 {
     if (this.tweenTarget != null)
     {
         global::TweenRotation component = this.tweenTarget.GetComponent <global::TweenRotation>();
         if (component != null)
         {
             component.rotation = this.mRot;
             component.enabled  = false;
         }
     }
 }