123456789101112131415161718192021222324252627282930313233 |
- #pragma once
- #include "Widgets/Notifications/SNotificationList.h"
- #include "Templates/SharedPointer.h"
- class FReloadPopup
- {
- static TSharedPtr<SNotificationItem> RefreshNotificationItem;
- public:
- FReloadPopup();
- void NotifyProjectRefresh();
- void Reload();
- void HideRefreshNotification();
- };
|