mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
15 lines
254 B
C++
15 lines
254 B
C++
#include "PLScrollBarWidget.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
ScrollBarWidget::ScrollBarWidget(const WidgetBasicState &state)
|
|
: WidgetSpec<ScrollBarWidget>(state)
|
|
{
|
|
}
|
|
|
|
bool ScrollBarWidget::Init(const WidgetBasicState &state)
|
|
{
|
|
return true;
|
|
}
|
|
}
|