Exemplo n.º 1
0
 public void NotifyUpdateRequested(Rat sender, Rat other)
 {
     UpdateRequested?.Invoke(sender, other);
 }
Exemplo n.º 2
0
 public void NotifyLeft(Rat rat)
 {
     Left?.Invoke(rat, EventArgs.Empty);
 }
Exemplo n.º 3
0
 public void NotifyEntered(Rat rat)
 {
     Entered?.Invoke(rat, EventArgs.Empty);
 }