[App] Add notifications for hotkeys & XNotifyQueueUI

This commit is contained in:
Adrian
2024-08-27 18:15:30 +01:00
committed by Radosław Gliński
parent 9c8a575b76
commit 1a9ff8fe67
8 changed files with 151 additions and 22 deletions

View File

@@ -76,6 +76,17 @@ class AchievementNotificationWindow final : ImGuiGuestNotification {
void OnDraw(ImGuiIO& io) override;
};
class XNotifyWindow final : ImGuiGuestNotification {
public:
XNotifyWindow(ui::ImGuiDrawer* imgui_drawer, std::string title,
std::string description, uint8_t user_index,
uint8_t position_id = 0)
: ImGuiGuestNotification(imgui_drawer, title, description, user_index,
position_id) {};
void OnDraw(ImGuiIO& io) override;
};
} // namespace ui
} // namespace xe