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