22
|
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 |
} |