Hyprland/src/managers/WelcomeManager.hpp
Vaxry 2cadc8abab
welcome: init welcome manager (#12409)
---------

Co-authored-by: Mihai Fufezan <mihai@fufexan.net>
2025-12-02 22:26:43 +00:00

16 lines
No EOL
273 B
C++

#pragma once
#include "../helpers/memory/Memory.hpp"
class CWelcomeManager {
public:
CWelcomeManager();
// whether the welcome screen was shown this boot.
bool fired();
private:
bool m_fired = false;
};
inline UP<CWelcomeManager> g_pWelcomeManager;