Guest User

Untitled

a guest
Jul 18th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. public event EventHandler Boom;
  2.  
  3. protected virtual void OnBoom();
  4. {
  5. Boom?.Invoke(this, EventArgs.Empty);
  6. }
Add Comment
Please, Sign In to add comment