Beispiel #1
0
 public Player2(Mediator mediator, int id)
     : base(mediator, id)
 {
 }
Beispiel #2
0
 //parent class for Player1 and Player2
 public Player(Mediator mediator,int id)
 {
     this.mediator = mediator;
     this.id = id;
 }