mirror of
https://github.com/hyprwm/Hyprland
synced 2026-01-07 16:10:14 +01:00
16 lines
No EOL
273 B
C++
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; |