Example #1
0
File: Dick.cs Project: NoGRo/SbBjT
 public FeelEventArgs(DickPart dickPart)
 {
     DickPart = dickPart;
 }
Example #2
0
File: Dick.cs Project: NoGRo/SbBjT
 protected virtual void OnFeel(DickPart dickPart)
 {
     EventHandler handler = Feel;
     if (handler != null) handler(this, new FeelEventArgs(dickPart));
 }