author | PAMPHILE Jonathan <pamphile@efrei.fr> |
Mon, 31 Aug 2009 15:01:27 +0200 | |
changeset 36 | b54f552f14ce |
parent 35 | ed77793b767a |
child 38 | fe84b5081ba2 |
permissions | -rw-r--r-- |
35 | 1 |
using System; |
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using FingersDance.Control.Player; |
|
6 |
||
7 |
namespace FingersDance.ActionFactory |
|
8 |
{ |
|
9 |
public class ActionFactory |
|
10 |
{ |
|
11 |
private Dictionary<String, Type> actionDict = new Dictionary<string, Type>(); |
|
12 |
||
13 |
public ActionFactory() |
|
14 |
{ |
|
36 | 15 |
actionDict.Add("ActionPlayMedia", Type.GetType("FingersDance.Actions.ActionPlayMedia")); |
35 | 16 |
} |
17 |
} |
|
18 |
} |