#region File Description
//-----------------------------------------------------------------------------
// AnimatedGameComponentAnimation.cs
//
// Microsoft XNA Community Game Platform
// Copyright (C) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
#endregion
#region Using Statements
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Xna.Framework;
#endregion
namespace CardsFramework
{
///
/// Represents an animation that can alter an animated component.
///
public class AnimatedGameComponentAnimation
{
#region Fields and Properties
protected TimeSpan Elapsed { get; set; }
public AnimatedGameComponent Component { get; internal set; }
///
/// An action to perform before the animation begins.
///
public Action