changeset 44 | 9c6ea1f246da |
43:e589f11636e6 | 44:9c6ea1f246da |
---|---|
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 ActionOpenMedia : FingersDance.Actions.ActionBase |
|
9 { |
|
10 string _Text = ""; |
|
11 |
|
12 public ActionOpenMedia() |
|
13 { } |
|
14 |
|
15 public ActionOpenMedia(string text) |
|
16 { |
|
17 _Text = text; |
|
18 } |
|
19 |
|
20 public void Execute() |
|
21 { |
|
22 } |
|
23 } |
|
24 } |