diff --git a/ANX.Framework/Curve.cs b/ANX.Framework/Curve.cs index abb21df4..e4e71bad 100644 --- a/ANX.Framework/Curve.cs +++ b/ANX.Framework/Curve.cs @@ -80,9 +80,21 @@ namespace ANX.Framework { get; set; } public CurveLoopType PostLoop { get; set; } + public CurveKeyCollection Keys - { get; } + { + get + { + throw new NotImplementedException(); + } + } + public Boolean IsConstant - { get; } + { + get + { + throw new NotImplementedException(); + } + } } }