コード例 #1
0
ファイル: player.cs プロジェクト: sl8rw/CS487
 public void Notify(int plant)
 {
     foreach (var GOM in GOMlist)
     {
         GOM.DoesAttack(plant);
     }
 }
コード例 #2
0
 public Worker()
 {
     instance        = this;
     this.gom        = GOM.Instance;
     this.log        = Log.Instance;
     this.repository = Repository.Instance;
     new Thread(new ThreadStart(this.DoWork)).Start();
 }
コード例 #3
0
ファイル: Worker.cs プロジェクト: Besyaka/swtor-emu
 public Worker()
 {
     instance = this;
     this.gom = GOM.Instance;
     this.log = Log.Instance;
     this.repository = Repository.Instance;
     new Thread(new ThreadStart(this.DoWork)).Start();
 }