mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-11-02 02:15:57 +01:00
12 lines
235 B
C++
12 lines
235 B
C++
|
#pragma once
|
||
|
|
||
|
#include <hyprland/src/plugins/PluginAPI.hpp>
|
||
|
|
||
|
inline HANDLE PHANDLE = nullptr;
|
||
|
|
||
|
struct SGlobalState {
|
||
|
CShader trailShader;
|
||
|
wl_event_source* tick = nullptr;
|
||
|
};
|
||
|
|
||
|
inline std::unique_ptr<SGlobalState> g_pGlobalState;
|