コード例 #1
0
ファイル: MainWindow.xaml.cs プロジェクト: skire/windia
 public MainWindow()
 {
     InitializeComponent();
     DroidFactory factory = new DroidFactory(new List<Type>()
     {
         typeof(R2D2),
         typeof(C3PO),
     });
     factory.DroidCreated += new EventHandler<DroidCreatedArg>(factory_DroidCreated);
     factory.Start();
     Console.ReadKey();
 }
コード例 #2
0
 public DroidFactory()
 {
     instance = this;
 }