author | cavaliet |
Tue, 24 Nov 2009 22:08:57 +0100 | |
changeset 229 | 05aba5def1fc |
parent 44 | 9c6ea1f246da |
permissions | -rw-r--r-- |
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FingersDance.Actions { public class ActionStopMedia : FingersDance.Actions.ActionBase { string _Text = ""; public ActionStopMedia() { } public ActionStopMedia(string text) { _Text = text; } public void Execute() { } } }