c# 7 features are breaking things

This commit is contained in:
Dylan Wilson
2018-05-02 20:43:46 +10:00
parent 4c6e2e7995
commit c55a8ce5d0
5 changed files with 9 additions and 6 deletions
@@ -44,8 +44,8 @@ namespace MonoGame.Extended.Tweening
public T Value
{
get => (T)_getMethod(Target);
set => _setMethod(Target, value);
get { return (T) _getMethod(Target); }
set { _setMethod(Target, value); }
}
}
}