changeset 38 | fe84b5081ba2 |
parent 37 | 513de10ba65a |
child 39 | 0efa1d506f28 |
37:513de10ba65a | 38:fe84b5081ba2 |
---|---|
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 ActionGenerator |
|
9 { |
|
10 public Object GetAction(Type T, object Args) |
|
11 { |
|
12 return Activator.CreateInstance(T); |
|
13 } |
|
14 } |
|
15 } |