コード例 #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);
 }