mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
13 lines
323 B
C++
13 lines
323 B
C++
// SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
|
|
#include "steamqmlimageprovider.h"
|
|
|
|
namespace ScreenPlayWorkshop {
|
|
SteamQMLImageProvider::SteamQMLImageProvider(QQuickItem* parent)
|
|
: QQuickItem(parent)
|
|
{
|
|
setFlag(QQuickItem::ItemHasContents);
|
|
}
|
|
}
|
|
|
|
#include "moc_steamqmlimageprovider.cpp"
|