20 lines
640 B
C#
20 lines
640 B
C#
// MonoGame - Copyright (C) The MonoGame Team
|
|
// This file is subject to the terms and conditions defined in
|
|
// file 'LICENSE.txt', which is part of this source code package.
|
|
|
|
namespace Microsoft.Xna.Framework.Content.Pipeline.Graphics
|
|
{
|
|
/// <summary>
|
|
/// Collection of animation data channels, one per bone or rigid object.
|
|
/// </summary>
|
|
public sealed class AnimationChannelDictionary : NamedValueDictionary<AnimationChannel>
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of AnimationChannelDictionary.
|
|
/// </summary>
|
|
public AnimationChannelDictionary()
|
|
{
|
|
}
|
|
}
|
|
}
|