Esempio n. 1
0
 private void sendByGmail(Player player)
 {
     Gmail mensaje = new Gmail(player);
     mensaje.sendEmail();
     Thread.Sleep(10000);
 }
Esempio n. 2
0
 public Gmail(Player player)
 {
     this.player = player;
 }
Esempio n. 3
0
 /*
  * Constructor
  */
 public HandlerDB(Player player)
 {
     this.player = player;
     initialize();
 }
Esempio n. 4
0
 public Cliente(Process p)
 {
     this.p = p;
     this.player = new Player(p);
 }