using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TweenAnimation
{
public class TweenRectSize : TweenModule
{
public override string name
{
get
{
return "RectTransform Size";
}
}
protected override void SetValue(float time)
{
throw new System.NotImplementedException();
}
}
}