author | ymh |
Thu, 24 Sep 2009 10:27:13 +0200 | |
branch | syncsource |
changeset 98 | d20bbc845cb0 |
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() { } } }