public void NotifyPopupClose(PopupEvent eventArgs) { OnPopupClose?.Invoke(this, eventArgs); }
protected virtual void PopupClose() { this.hide(); Function.Call(Hash.SET_GAME_PAUSED, false); OnPopupClose?.Invoke(); }
public void PopupClose() { OnPopupClose?.Invoke(this, new EventArgs()); }