src/FingersDance.Control.Player/PlayAction.cs
author ymh
Wed, 23 Sep 2009 10:49:34 +0200
branchsyncsource
changeset 78 3bf9b343158d
parent 35 ed77793b767a
permissions -rw-r--r--
Create branch syncsource

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