From c9690928c580b63fcb37df6cf96db149cac7f114 Mon Sep 17 00:00:00 2001 From: Glatzemann Date: Fri, 18 Nov 2011 15:34:40 +0000 Subject: [PATCH] fixed a small issue in Curve --- ANX.Framework/Curve.cs | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) 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(); + } + } } }