src/FingersDance.ActionFactory/ActionFactory.cs
changeset 36 b54f552f14ce
parent 35 ed77793b767a
child 38 fe84b5081ba2
equal deleted inserted replaced
35:ed77793b767a 36:b54f552f14ce
    10     {
    10     {
    11         private Dictionary<String, Type> actionDict = new Dictionary<string, Type>();
    11         private Dictionary<String, Type> actionDict = new Dictionary<string, Type>();
    12 
    12 
    13         public ActionFactory()
    13         public ActionFactory()
    14         {
    14         {
    15             //this.actionDict.Add("toto", );
    15             actionDict.Add("ActionPlayMedia", Type.GetType("FingersDance.Actions.ActionPlayMedia"));
    16         }
    16         }
    17     }
    17     }
    18 }
    18 }