Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1. public class AnimationProperty {
  2.         public AnimationCurve Curve { get; set; }
  3.         public string NameProperty { get; set; }
  4.         public object ValueProperty { get; set; }
  5.  
  6.         public AnimationProperty(AnimationCurve curve, string nameProperty, object valueProperty) {
  7.             Curve = curve;
  8.             NameProperty = nameProperty;
  9.             ValueProperty = valueProperty;
  10.         }
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement