CC#•Created by n on 1/16/2024 in #help First time using delegates/lambda expressions
public event EventHandler NewEvent; <--- this automatically creates a delegate for you to!
public event EventHandler<CustomEventArgs> NewEvent; <--- For when you need custom args.