mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-14 12:09:36 +00:00
Add some initial widget functionality (prefs partly working)
This commit is contained in:
20
PortabilityLayer/PLInvisibleWidget.cpp
Normal file
20
PortabilityLayer/PLInvisibleWidget.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#include "PLInvisibleWidget.h"
|
||||
|
||||
namespace PortabilityLayer
|
||||
{
|
||||
InvisibleWidget::InvisibleWidget(const WidgetBasicState &state)
|
||||
: WidgetSpec<InvisibleWidget>(state)
|
||||
{
|
||||
}
|
||||
|
||||
InvisibleWidget::~InvisibleWidget()
|
||||
{
|
||||
}
|
||||
|
||||
bool InvisibleWidget::Init(const WidgetBasicState &state)
|
||||
{
|
||||
(void)state;
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user