src/FingersDance.Actions/ActionGenerator.cs
changeset 22 e4864c53abe2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/FingersDance.Actions/ActionGenerator.cs	Wed Aug 05 15:22:24 2009 +0200
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace FingersDance.Actions
+{
+    public class ActionGenerator
+    {
+        public Object GetAction(Type T, object Args)
+        {
+            return Activator.CreateInstance(T);
+        }
+    }
+}