author | cavaliet |
Tue, 24 Nov 2009 22:08:57 +0100 | |
changeset 229 | 05aba5def1fc |
parent 44 | 9c6ea1f246da |
permissions | -rw-r--r-- |
44 | 1 |
using System; |
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
||
6 |
namespace FingersDance.Actions |
|
7 |
{ |
|
8 |
public class ActionStopMedia : FingersDance.Actions.ActionBase |
|
9 |
{ |
|
10 |
string _Text = ""; |
|
11 |
||
12 |
public ActionStopMedia() |
|
13 |
{ } |
|
14 |
||
15 |
public ActionStopMedia(string text) |
|
16 |
{ |
|
17 |
_Text = text; |
|
18 |
} |
|
19 |
||
20 |
public void Execute() |
|
21 |
{ |
|
22 |
} |
|
23 |
} |
|
24 |
} |