public NextLevelEvent(EventsManager.EventType type, string nextLevel) : base(type)
 {
     this.nextLevel = nextLevel;
 }
 public BaseEvent(EventsManager.EventType type)
 {
     this.type = type;
 }
 public EventWithGurl(EventsManager.EventType type, Transform daGurl) : base(type)
 {
     this.gurl = daGurl;
 }