mirror of
https://github.com/hyprwm/hyprlock.git
synced 2024-12-23 21:59:48 +01:00
6 lines
71 B
C++
6 lines
71 B
C++
|
#pragma once
|
||
|
|
||
|
class IWidget {
|
||
|
public:
|
||
|
virtual bool draw() = 0;
|
||
|
};
|