Exemplo n.º 1
0
 public static T Get <T>(this SerializedProperty serializedProperty, IPropertyGetSet <T> getter)
 {
     return(getter.GetValue(serializedProperty));
 }
Exemplo n.º 2
0
 public static void Set <T>(this SerializedProperty serializedProperty, IPropertyGetSet <T> setter, T value)
 {
     setter.SetValue(serializedProperty, value);
 }