src/FingersDance.Control.Player/PlayAction.cs
author sarias
Sun, 11 Oct 2009 20:14:02 +0200
changeset 137 5a47756f7fb8
parent 35 ed77793b767a
permissions -rw-r--r--
To rotate the layout based on the suggested orientation

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