Tanoda
ITweenValue.cs
Go to the documentation of this file.
1
3
4
6{
7 internal interface ITweenValue
8 {
9 void TweenValue(float floatPercentage);
10 bool ignoreTimeScale { get; }
11 float duration { get; }
12 bool ValidTarget();
13 void Finished();
14 }
15}