Пример #1
0
 public IrcBot(Action<Action> pSynchronousInvoker, Controller pController)
 {
     synchronousInvoker = pSynchronousInvoker;
     gs = GameScanner.getInstance();
     gu = new GameUpdate(gs_GameLaunched);
     gs.GameLaunched += gu;
     ctrl = pController;
 }
Пример #2
0
 public static GameScanner getInstance()
 {
     if (instance == null)
         instance = new GameScanner();
     return instance;
 }