Esempio n. 1
0
 /// <summary>
 ///     Raises the <see cref="Click" /> event.
 /// </summary>
 /// <param name="e">An <see cref="ClickPlayerTextDrawEventArgs" /> that contains the event data. </param>
 public virtual void OnClick(ClickPlayerTextDrawEventArgs e)
 {
     if (Click != null)
     {
         Click(this, e);
     }
 }
 /// <summary>
 ///     Raises the <see cref="Click" /> event.
 /// </summary>
 /// <param name="e">An <see cref="ClickPlayerTextDrawEventArgs" /> that contains the event data. </param>
 public virtual void OnClick(ClickPlayerTextDrawEventArgs e)
 {
     Click?.Invoke(this, e);
 }