95 lines
2.4 KiB
C#

#region Using Statements
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
#endregion
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
namespace ANX.Framework.Content.Pipeline.Graphics
{
public sealed class AnimationChannel : ICollection<AnimationKeyframe>, IEnumerable<AnimationKeyframe>, IEnumerable
{
public AnimationChannel()
{
throw new NotImplementedException();
}
public int Count
{
get
{
throw new NotImplementedException();
}
}
public AnimationKeyframe this[int index]
{
get
{
throw new NotImplementedException();
}
}
public void Add(AnimationKeyframe item)
{
throw new NotImplementedException();
}
public void Clear()
{
throw new NotImplementedException();
}
public bool Contains(AnimationKeyframe item)
{
throw new NotImplementedException();
}
public IEnumerator<AnimationKeyframe> GetEnumerator()
{
throw new NotImplementedException();
}
public int IndexOf(AnimationKeyframe item)
{
throw new NotImplementedException();
}
public bool Remove(AnimationKeyframe item)
{
throw new NotImplementedException();
}
public void RemoveAt(int index)
{
throw new NotImplementedException();
}
bool ICollection<AnimationKeyframe>.IsReadOnly
{
get { throw new NotImplementedException(); }
}
void ICollection<AnimationKeyframe>.Add(AnimationKeyframe item)
{
throw new NotImplementedException();
}
void ICollection<AnimationKeyframe>.CopyTo(AnimationKeyframe[] array, int arrayIndex)
{
throw new NotImplementedException();
}
IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
throw new NotImplementedException();
}
}
}