author | PAMPHILE Jonathan <pamphile@efrei.fr> |
Tue, 27 Oct 2009 01:59:56 +0100 | |
changeset 176 | 0896f36b9d57 |
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() { } } }