author | riley |
Thu, 24 Sep 2009 15:30:31 +0200 | |
changeset 108 | 9a17e1de0cce |
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() { } } }