fixed a small issue in Curve

This commit is contained in:
Glatzemann 2011-11-18 15:34:40 +00:00
parent 3ba3457903
commit c9690928c5

View File

@ -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();
}
}
}
}