src/FingersDance.Control.Player/PlayAction.cs
author ymh
Tue, 15 Sep 2009 14:53:12 +0200
changeset 57 926ad47737a3
parent 35 ed77793b767a
permissions -rw-r--r--
Correct drag enter

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
    }
}