src/FingersDance.Control.Player/PlayAction.cs
author cavaliet
Fri, 02 Oct 2009 18:49:07 +0200
changeset 128 90c29e979ef4
parent 35 ed77793b767a
permissions -rw-r--r--
Drag and drop of annotations from timeline, first step

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FingersDance.Actions;

namespace FingersDance.Control.Player
{
    public class PlayAction : ActionBase
    {
        #region ActionBase Members

        public void Execute()
        {
            throw new NotImplementedException();
        }

        #endregion
    }
}