mirror of
https://github.com/hyprwm/hyprlock.git
synced 2025-01-11 13:59:48 +01:00
10 lines
No EOL
154 B
C++
10 lines
No EOL
154 B
C++
#pragma once
|
|
|
|
class IWidget {
|
|
public:
|
|
struct SRenderData {
|
|
float opacity = 1;
|
|
};
|
|
|
|
virtual bool draw(const SRenderData& data) = 0;
|
|
}; |