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